In [1]:
import csv

def make_data_point(line, header):
    output = {}
    for index, header_item in enumerate(header):
        output[header_item] = line[index]
    return output

with open("denver-1.nov.csv") as inf:
    reader = csv.reader(inf)
    header = next(reader)
    all_data = []
    for line in reader:
        all_data.append(make_data_point(line, header))
In [2]:
from collections import defaultdict

# this stores a dictionary mapping each precinct to a list of data
# from that precinct
byprecinct = defaultdict(list)  
for line in all_data:
    byprecinct[line["precinct"]].append(line)
In [7]:
from pprint import pprint

pprint(byprecinct)
defaultdict(<class 'list'>,
            {'111': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.769447',
                      'lng': '-105.041675',
                      'location': 'W 38TH AVE / N RALEIGH ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '490427',
                      'time': '17:17:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769548',
                      'lng': '-105.034643',
                      'location': 'W 38TH AVE / N LOWELL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '490503',
                      'time': '19:58:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769287',
                      'lng': '-105.022907',
                      'location': 'W 38TH AVE / N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '490544',
                      'time': '13:26:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.771139',
                      'lng': '-105.052079',
                      'location': '5100-BLK W 39TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '492157',
                      'time': '08:52:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.771136',
                      'lng': '-105.025299',
                      'location': 'W 39TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '492822',
                      'time': '07:22:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769533',
                      'lng': '-105.035805',
                      'location': '3800 N MEADE ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '493401',
                      'time': '02:28:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769363',
                      'lng': '-105.044013',
                      'location': 'W 38TH AVE / N TENNYSON ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '493530',
                      'time': '22:10:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769266',
                      'lng': '-105.020524',
                      'location': 'W 38TH AVE / N CLAY ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '493724',
                      'time': '22:55:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.769513',
                      'lng': '-105.036987',
                      'location': 'W 38TH AVE / N NEWTON ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '493851',
                      'time': '13:36:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'Report Made,T - Citation Issue',
                      'district': '1',
                      'lat': '39.769282',
                      'lng': '-105.023625',
                      'location': '2900 W 38TH AVE',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '493890',
                      'time': '07:36:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769282',
                      'lng': '-105.023625',
                      'location': '2900 W 38TH AVE',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '493897',
                      'time': '09:15:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.769289',
                      'lng': '-105.025239',
                      'location': 'W 38TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '494242',
                      'time': '02:00:38',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769266',
                      'lng': '-105.020524',
                      'location': 'W 38TH AVE / N CLAY ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '494396',
                      'time': '05:04:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769513',
                      'lng': '-105.036987',
                      'location': 'W 38TH AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '494422',
                      'time': '00:30:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769289',
                      'lng': '-105.025239',
                      'location': 'W 38TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '495065',
                      'time': '11:28:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.769289',
                      'lng': '-105.025239',
                      'location': 'W 38TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '495066',
                      'time': '00:23:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769283',
                      'lng': '-105.015869',
                      'location': '3800-BLK N ZUNI ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '495683',
                      'time': '19:06:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.770217',
                      'lng': '-105.02291',
                      'location': 'N ELIOT ST / W DENVER PL',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '495705',
                      'time': '15:14:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769288',
                      'lng': '-105.006458',
                      'location': 'W 38TH AVE / N PECOS ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '495761',
                      'time': '15:44:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769403',
                      'lng': '-105.029969',
                      'location': 'W 38TH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '495844',
                      'time': '09:42:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.769289',
                      'lng': '-105.025239',
                      'location': 'W 38TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '495933',
                      'time': '04:08:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Vehicle Towed',
                      'district': '1',
                      'lat': '39.769287',
                      'lng': '-105.022907',
                      'location': '3800 N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '496243',
                      'time': '10:07:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.770223',
                      'lng': '-105.025238',
                      'location': 'W DENVER PL / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '496913',
                      'time': '14:15:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.77022',
                      'lng': '-105.024225',
                      'location': '2956 W DENVER PL',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '496923',
                      'time': '16:07:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.770522',
                      'lng': '-105.006443',
                      'location': 'W 39TH AVE / N PECOS ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '496985',
                      'time': '01:04:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.769403',
                      'lng': '-105.029969',
                      'location': 'W 38TH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '497038',
                      'time': '14:07:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.769361',
                      'lng': '-105.048598',
                      'location': 'W 38TH AVE / N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '497697',
                      'time': '10:19:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769289',
                      'lng': '-105.025239',
                      'location': 'W 38TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '497725',
                      'time': '22:52:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.769293',
                      'lng': '-105.013536',
                      'location': 'W 38TH AVE / N VALLEJO ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '497918',
                      'time': '23:37:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.770223',
                      'lng': '-105.025238',
                      'location': 'W DENVER PL / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '498121',
                      'time': '03:03:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.770508',
                      'lng': '-105.013525',
                      'location': 'W 39TH AVE / N VALLEJO ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '498747',
                      'time': '14:27:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.771139',
                      'lng': '-105.022899',
                      'location': 'W 39TH AVE / N ELIOT ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '498827',
                      'time': '22:42:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769403',
                      'lng': '-105.029969',
                      'location': 'W 38TH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '498860',
                      'time': '10:14:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769436',
                      'lng': '-105.031014',
                      'location': '3340 W 38TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '498879',
                      'time': '16:21:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.769273',
                      'lng': '-105.017422',
                      'location': 'W 38TH AVE / N ALCOTT ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '499196',
                      'time': '17:26:38',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769288',
                      'lng': '-105.006458',
                      'location': 'W 38TH AVE / N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '499348',
                      'time': '10:24:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769288',
                      'lng': '-105.006458',
                      'location': 'W 38TH AVE / N PECOS ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '499372',
                      'time': '00:07:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769452',
                      'lng': '-105.031537',
                      'location': 'W 38TH AVE / N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '499504',
                      'time': '22:32:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769288',
                      'lng': '-105.006458',
                      'location': 'W 38TH AVE / N PECOS ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '499981',
                      'time': '10:28:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769294',
                      'lng': '-105.014399',
                      'location': 'W 38TH AVE / N WYANDOT ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '500207',
                      'time': '09:44:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769294',
                      'lng': '-105.014399',
                      'location': 'W 38TH AVE / N WYANDOT ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '500214',
                      'time': '02:14:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'No Police Needed',
                      'district': '1',
                      'lat': '39.76938',
                      'lng': '-105.028682',
                      'location': '3190 W 38TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '500279',
                      'time': '08:28:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.770621',
                      'lng': '-105.029967',
                      'location': '3300 W 39TH AVE',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '500303',
                      'time': '10:36:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769266',
                      'lng': '-105.020524',
                      'location': 'W 38TH AVE / N CLAY ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '500416',
                      'time': '14:35:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.774128',
                      'lng': '-105.022298',
                      'location': '2815 W 42ND AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '501529',
                      'time': '10:19:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.77303',
                      'lng': '-105.02995',
                      'location': '4100-BLK N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '502472',
                      'time': '00:22:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.770513',
                      'lng': '-105.015886',
                      'location': 'W 39TH AVE / N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '503462',
                      'time': '01:58:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.771136',
                      'lng': '-105.025299',
                      'location': '3000-BLK W 39TH AVE',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '503787',
                      'time': '16:21:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769287',
                      'lng': '-105.022907',
                      'location': 'W 38TH AVE / N ELIOT ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '504724',
                      'time': '19:56:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.771808',
                      'lng': '-105.044013',
                      'location': '4000 N TENNYSON ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '504834',
                      'time': '08:32:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.771808',
                      'lng': '-105.044013',
                      'location': '4000-BLK N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '505111',
                      'time': '11:13:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.772955',
                      'lng': '-105.045145',
                      'location': 'W 41ST AVE / N UTICA ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '505711',
                      'time': '07:59:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.772958',
                      'lng': '-105.044005',
                      'location': 'W 41ST AVE / N TENNYSON ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '505737',
                      'time': '23:55:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.772937',
                      'lng': '-105.02523',
                      'location': 'W 41ST AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '505837',
                      'time': '07:32:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.771974',
                      'lng': '-105.034608',
                      'location': '4000-BLK N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '505930',
                      'time': '14:13:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.772937',
                      'lng': '-105.02523',
                      'location': '3000-BLK W 41ST AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '506174',
                      'time': '14:02:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.773276',
                      'lng': '-105.048605',
                      'location': '4136 N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '508430',
                      'time': '07:10:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.774124',
                      'lng': '-105.015872',
                      'location': 'W 42ND AVE / N ZUNI ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '508813',
                      'time': '04:51:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.774131',
                      'lng': '-105.011222',
                      'location': 'W 42ND AVE / N TEJON ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '508893',
                      'time': '17:17:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.771974',
                      'lng': '-105.034608',
                      'location': 'N LOWELL BLVD / W 40TH AVE',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '510625',
                      'time': '09:09:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.772051',
                      'lng': '-105.048605',
                      'location': '4000 N WOLFF ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '510684',
                      'time': '09:15:40',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.775285',
                      'lng': '-105.043995',
                      'location': 'W 43RD AVE / N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '513876',
                      'time': '07:48:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made,T - Citation Issue',
                      'district': '1',
                      'lat': '39.774713',
                      'lng': '-105.025286',
                      'location': '3000-BLK W 42ND AVE',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '514801',
                      'time': '20:50:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.774713',
                      'lng': '-105.025286',
                      'location': 'W 42ND AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '515092',
                      'time': '13:43:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.774988',
                      'lng': '-105.034609',
                      'location': '4200-BLK N LOWELL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '518979',
                      'time': '12:28:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.775327',
                      'lng': '-105.023608',
                      'location': '4300-BLK N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '519657',
                      'time': '19:11:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.775343',
                      'lng': '-105.015878',
                      'location': 'W 43RD AVE / N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '520524',
                      'time': '09:10:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.777967',
                      'lng': '-105.034625',
                      'location': '4500 N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '562443',
                      'time': '11:14:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.776728',
                      'lng': '-105.036922',
                      'location': '3800-BLK W 44TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '563061',
                      'time': '08:49:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.777854',
                      'lng': '-105.025268',
                      'location': '3000-BLK W 45TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '563323',
                      'time': '09:54:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.777854',
                      'lng': '-105.025268',
                      'location': '3000-BLK W 45TH AVE',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '563338',
                      'time': '20:24:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.777871',
                      'lng': '-105.02678',
                      'location': 'W 45TH AVE / N GROVE ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '563352',
                      'time': '02:44:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.777896',
                      'lng': '-105.029912',
                      'location': '4500-BLK N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '563682',
                      'time': '12:37:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.776644',
                      'lng': '-105.025223',
                      'location': 'W 44TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '564963',
                      'time': '00:25:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.776644',
                      'lng': '-105.025223',
                      'location': '4400-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '564990',
                      'time': '23:20:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.776531',
                      'lng': '-105.007047',
                      'location': '4400-BLK N QUIETO CT',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '566355',
                      'time': '13:54:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.776555',
                      'lng': '-105.011181',
                      'location': 'W 44TH AVE / N TEJON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '566804',
                      'time': '16:47:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.776555',
                      'lng': '-105.011181',
                      'location': 'W 44TH AVE / N TEJON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '566812',
                      'time': '09:26:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.776667',
                      'lng': '-105.028346',
                      'location': 'W 44TH AVE / N HOOKER ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '567012',
                      'time': '12:57:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.776667',
                      'lng': '-105.028346',
                      'location': 'W 44TH AVE / N HOOKER ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '567020',
                      'time': '03:12:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.776555',
                      'lng': '-105.011181',
                      'location': 'W 44TH AVE / N TEJON ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '567167',
                      'time': '02:06:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.776574',
                      'lng': '-105.043972',
                      'location': '4400-BLK W 44TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '570288',
                      'time': '03:15:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.777744',
                      'lng': '-105.011152',
                      'location': 'W 45TH AVE / N TEJON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '570416',
                      'time': '00:54:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'No Police Needed',
                      'district': '1',
                      'lat': '39.776571',
                      'lng': '-105.051374',
                      'location': '5038 W 44TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '570609',
                      'time': '08:22:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.776538',
                      'lng': '-105.006434',
                      'location': '4400-BLK N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '570863',
                      'time': '22:36:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.776644',
                      'lng': '-105.025223',
                      'location': 'W 44TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '570944',
                      'time': '02:26:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.776644',
                      'lng': '-105.025223',
                      'location': 'W 44TH AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '571034',
                      'time': '00:23:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.776752',
                      'lng': '-105.034616',
                      'location': 'W 44TH AVE / N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '571254',
                      'time': '11:15:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.776752',
                      'lng': '-105.034616',
                      'location': 'W 44TH AVE / N LOWELL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '571263',
                      'time': '18:08:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.777744',
                      'lng': '-105.011152',
                      'location': '4500-BLK N TEJON ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '571521',
                      'time': '22:30:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.779098',
                      'lng': '-105.029899',
                      'location': '3300 W SCOTT PL',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '572251',
                      'time': '22:59:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.776574',
                      'lng': '-105.043972',
                      'location': 'W 44TH AVE / N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '572861',
                      'time': '17:05:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.780206',
                      'lng': '-105.052089',
                      'location': 'W 46TH AVE / N ZENOBIA ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '572865',
                      'time': '23:53:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.780212',
                      'lng': '-105.050921',
                      'location': 'W 46TH AVE / N YATES ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '572891',
                      'time': '23:24:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780218',
                      'lng': '-105.042752',
                      'location': '4300 W 46TH AVE',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '573042',
                      'time': '08:04:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.780205',
                      'lng': '-105.039256',
                      'location': 'W 46TH AVE / N PERRY ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '573044',
                      'time': '09:12:24',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.776644',
                      'lng': '-105.025223',
                      'location': 'W 44TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '573175',
                      'time': '23:40:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780223',
                      'lng': '-105.0346',
                      'location': 'N LOWELL BLVD / W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '573179',
                      'time': '22:10:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780223',
                      'lng': '-105.0346',
                      'location': '4600-BLK N LOWELL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '573185',
                      'time': '17:33:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'GOA',
                      'district': '1',
                      'lat': '39.77839',
                      'lng': '-105.052076',
                      'location': '4500 N ZENOBIA ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '576335',
                      'time': '01:39:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.779129',
                      'lng': '-105.011135',
                      'location': '4560 N TEJON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '576395',
                      'time': '18:27:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.779044',
                      'lng': '-105.025257',
                      'location': '3000 W SCOTT PL',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '578753',
                      'time': '10:30:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.780243',
                      'lng': '-105.045119',
                      'location': 'W 46TH AVE / N UTICA ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '579314',
                      'time': '08:25:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.778442',
                      'lng': '-105.025154',
                      'location': 'W 45TH AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '580306',
                      'time': '04:09:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.777904',
                      'lng': '-105.00644',
                      'location': '4488 N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '580855',
                      'time': '12:19:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.778387',
                      'lng': '-105.043978',
                      'location': '4500-BLK-STUART N TENNYSON ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '580980',
                      'time': '10:01:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.779044',
                      'lng': '-105.025257',
                      'location': 'N FEDERAL BLVD / W SCOTT PL',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '582252',
                      'time': '00:24:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780206',
                      'lng': '-105.053208',
                      'location': '4600-BLK N SHERIDAN BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '583523',
                      'time': '11:31:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '1',
                      'lat': '39.780223',
                      'lng': '-105.0346',
                      'location': '4600--BLK N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '584158',
                      'time': '23:09:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.782085',
                      'lng': '-105.043962',
                      'location': 'W 47TH AVE / N TENNYSON ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '585128',
                      'time': '00:28:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.782085',
                      'lng': '-105.043962',
                      'location': 'W 47TH AVE / N TENNYSON ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '585203',
                      'time': '04:19:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780176',
                      'lng': '-105.011929',
                      'location': '2100 W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '585370',
                      'time': '07:34:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780253',
                      'lng': '-105.033024',
                      'location': 'W 46TH AVE / N KING ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '585783',
                      'time': '00:03:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780153',
                      'lng': '-105.006447',
                      'location': 'W 46TH AVE / N PECOS ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '586069',
                      'time': '08:38:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780153',
                      'lng': '-105.006447',
                      'location': '4600 N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '586132',
                      'time': '19:58:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.780153',
                      'lng': '-105.006447',
                      'location': '4600-BLK N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '586248',
                      'time': '09:36:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780267',
                      'lng': '-105.028327',
                      'location': 'W 46TH AVE / N HOOKER ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '586435',
                      'time': '23:50:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.780188',
                      'lng': '-105.015839',
                      'location': '4600-BLK N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '586876',
                      'time': '16:18:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780188',
                      'lng': '-105.015839',
                      'location': '2400 W 46TH AVE',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '586887',
                      'time': '09:16:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780215',
                      'lng': '-105.02052',
                      'location': 'W 46TH AVE / N CLAY ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '586940',
                      'time': '12:50:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780215',
                      'lng': '-105.02052',
                      'location': 'W 46TH AVE / N CLAY ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '586941',
                      'time': '20:38:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780263',
                      'lng': '-105.025188',
                      'location': 'W 46TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '587341',
                      'time': '21:20:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.780263',
                      'lng': '-105.025188',
                      'location': 'W 46TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '587402',
                      'time': '01:22:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.781351',
                      'lng': '-105.009571',
                      'location': 'W 47TH AVE / N SHOSHONE ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '588912',
                      'time': '14:34:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.781348',
                      'lng': '-105.008005',
                      'location': 'W 47TH AVE / N QUIVAS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '588913',
                      'time': '19:39:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.781985',
                      'lng': '-105.017027',
                      'location': '4700-BLK N ALCOTT ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '589005',
                      'time': '00:03:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.782015',
                      'lng': '-105.023958',
                      'location': '2900-BLK W 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '589062',
                      'time': '09:03:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.780263',
                      'lng': '-105.025188',
                      'location': 'W 46TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '590023',
                      'time': '01:49:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.782091',
                      'lng': '-105.039259',
                      'location': '4700 N PERRY ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '591377',
                      'time': '06:39:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.782087',
                      'lng': '-105.038104',
                      'location': '4700 N OSCEOLA ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '591383',
                      'time': '06:34:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.780171',
                      'lng': '-105.011302',
                      'location': '2021 W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '591688',
                      'time': '20:51:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780154',
                      'lng': '-105.009569',
                      'location': 'W 46TH AVE / N SHOSHONE ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '591769',
                      'time': '15:31:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780169',
                      'lng': '-105.011135',
                      'location': '4600-BLK N TEJON ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '591863',
                      'time': '03:39:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780169',
                      'lng': '-105.011135',
                      'location': 'W 46TH AVE / N TEJON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '591871',
                      'time': '15:29:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.787465',
                      'lng': '-105.025223',
                      'location': 'W 50TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '592132',
                      'time': '23:43:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.785646',
                      'lng': '-105.053253',
                      'location': 'W 49TH AVE / N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '592254',
                      'time': '08:12:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.785619',
                      'lng': '-105.026421',
                      'location': '3050 W 49TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '592333',
                      'time': '09:08:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.787436',
                      'lng': '-105.023962',
                      'location': '5000 N ELIOT ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '592388',
                      'time': '14:51:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.787436',
                      'lng': '-105.023962',
                      'location': '5000-BLK N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '592400',
                      'time': '17:32:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'N FEDERAL BLVD / I70 EB',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '592454',
                      'time': '08:28:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.784385',
                      'lng': '-105.025192',
                      'location': 'I70 WB / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '592648',
                      'time': '23:45:16',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.787851',
                      'lng': '-105.006415',
                      'location': 'N PECOS ST / W BEEKMAN PL',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '592755',
                      'time': '21:08:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.785628',
                      'lng': '-105.04395',
                      'location': 'W 49TH AVE / N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '592822',
                      'time': '09:35:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.789243',
                      'lng': '-105.025185',
                      'location': '5100-BLK N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '592834',
                      'time': '13:49:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.78701',
                      'lng': '-105.025214',
                      'location': '4975 N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '592973',
                      'time': '09:16:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.789245',
                      'lng': '-105.036942',
                      'location': 'N NEWTON ST / W 51ST AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '593285',
                      'time': '12:48:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.789247',
                      'lng': '-105.034599',
                      'location': 'W 51ST AVE / N LOWELL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '593304',
                      'time': '00:25:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.789231',
                      'lng': '-105.015849',
                      'location': '5100 N ZUNI ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '593305',
                      'time': '23:35:26',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Detox Van',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '593391',
                      'time': '11:55:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.785624',
                      'lng': '-105.040427',
                      'location': '4100-BLK W 49TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '593403',
                      'time': '14:34:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': 'W 49TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '593432',
                      'time': '09:58:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.78951',
                      'lng': '-105.025186',
                      'location': '5115 N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '593449',
                      'time': '18:29:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.785622',
                      'lng': '-105.032204',
                      'location': '4900 N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '593674',
                      'time': '10:01:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.789246',
                      'lng': '-105.023952',
                      'location': '2900-BLK W 51ST AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '593733',
                      'time': '13:22:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.785611',
                      'lng': '-105.027574',
                      'location': 'W 49TH AVE / N GROVE ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '593856',
                      'time': '03:29:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '593986',
                      'time': '13:37:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '593987',
                      'time': '16:32:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': 'W 49TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '594034',
                      'time': '11:21:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': 'W 49TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '594036',
                      'time': '09:48:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.78743',
                      'lng': '-105.02047',
                      'location': 'W 50TH AVE / N CLAY ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '594115',
                      'time': '01:07:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.787465',
                      'lng': '-105.025223',
                      'location': 'W 50TH AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '594173',
                      'time': '16:46:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': '4900-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '594282',
                      'time': '12:48:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.790943',
                      'lng': '-105.02519',
                      'location': '5190 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '594500',
                      'time': '10:24:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.787477',
                      'lng': '-105.029891',
                      'location': 'W REGIS BLVD / N IRVING ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '594712',
                      'time': '23:50:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'N FEDERAL BLVD / I70 EB',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '594760',
                      'time': '23:04:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.791115',
                      'lng': '-105.025191',
                      'location': 'W 52ND AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '594952',
                      'time': '08:29:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.791115',
                      'lng': '-105.025191',
                      'location': '5200 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '594958',
                      'time': '00:30:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.791115',
                      'lng': '-105.025191',
                      'location': 'W 52ND AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '595013',
                      'time': '13:14:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.791115',
                      'lng': '-105.025191',
                      'location': 'W 52ND AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '595014',
                      'time': '11:51:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.791115',
                      'lng': '-105.025191',
                      'location': 'W 52ND AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '595027',
                      'time': '00:34:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.791115',
                      'lng': '-105.025191',
                      'location': 'W 52ND AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '595028',
                      'time': '08:26:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.791115',
                      'lng': '-105.025191',
                      'location': '5200-BLK N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '595090',
                      'time': '22:39:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.791115',
                      'lng': '-105.025191',
                      'location': '5200 N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '595091',
                      'time': '23:55:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.789243',
                      'lng': '-105.025185',
                      'location': '5100-BLK N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '595407',
                      'time': '11:39:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.787436',
                      'lng': '-105.045096',
                      'location': 'W 50TH AVE / N UTICA ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '595526',
                      'time': '09:11:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.787439',
                      'lng': '-105.043948',
                      'location': '5000-BLK N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '595578',
                      'time': '11:06:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '596268',
                      'time': '14:33:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.78562',
                      'lng': '-105.03458',
                      'location': 'W 49TH AVE / N LOWELL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '596590',
                      'time': '07:38:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.787465',
                      'lng': '-105.025223',
                      'location': 'W REGIS BLVD / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '596742',
                      'time': '01:07:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '596781',
                      'time': '13:59:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.787465',
                      'lng': '-105.025223',
                      'location': '5000 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '596811',
                      'time': '22:48:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.793956',
                      'lng': '-105.025214',
                      'location': '5300-BLK N Federal Blvd',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '597027',
                      'time': '14:47:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.789243',
                      'lng': '-105.025185',
                      'location': '5100-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '597361',
                      'time': '07:52:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.789243',
                      'lng': '-105.025185',
                      'location': 'W 51ST AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '597383',
                      'time': '15:45:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.788463',
                      'lng': '-105.025202',
                      'location': '5056 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '597930',
                      'time': '15:21:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.784998',
                      'lng': '-105.006427',
                      'location': '4900-BLK N PECOS ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '598301',
                      'time': '11:07:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.785127',
                      'lng': '-105.02519',
                      'location': '4875 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '598319',
                      'time': '10:35:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.782989',
                      'lng': '-105.025193',
                      'location': '4700-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '598334',
                      'time': '08:36:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.782989',
                      'lng': '-105.025193',
                      'location': '4700-BLK N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '598341',
                      'time': '08:06:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.782989',
                      'lng': '-105.025193',
                      'location': '4700 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '598357',
                      'time': '09:33:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.787446',
                      'lng': '-105.03457',
                      'location': 'W REGIS BLVD / N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '598409',
                      'time': '08:25:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.787446',
                      'lng': '-105.03457',
                      'location': 'W 50TH AVE / N LOWELL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '598428',
                      'time': '23:31:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.787465',
                      'lng': '-105.025223',
                      'location': '5000 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '598444',
                      'time': '16:45:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.787434',
                      'lng': '-105.015836',
                      'location': '5000-BLK N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '598493',
                      'time': '19:17:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.787465',
                      'lng': '-105.025223',
                      'location': '5000 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '598804',
                      'time': '16:21:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.78562',
                      'lng': '-105.03458',
                      'location': '3600-BLK W 49TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '598909',
                      'time': '10:36:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.789243',
                      'lng': '-105.025185',
                      'location': '5100 N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '598964',
                      'time': '20:55:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.785451',
                      'lng': '-105.006423',
                      'location': 'W DIXIE PL / N PECOS ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '599183',
                      'time': '23:10:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': 'W 49TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '599605',
                      'time': '23:27:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.784385',
                      'lng': '-105.025192',
                      'location': 'I70 WB / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '599752',
                      'time': '16:00:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.784385',
                      'lng': '-105.025192',
                      'location': 'I70 WB / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '599753',
                      'time': '10:35:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.789243',
                      'lng': '-105.025185',
                      'location': 'W 51ST AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '599804',
                      'time': '02:07:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': 'W 49TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '599824',
                      'time': '10:35:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.791084',
                      'lng': '-105.019901',
                      'location': '2655 W 52ND AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '599889',
                      'time': '01:15:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.787465',
                      'lng': '-105.025223',
                      'location': '5000-BLK N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '599990',
                      'time': '23:02:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.788989',
                      'lng': '-105.02519',
                      'location': '5085 N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '600080',
                      'time': '13:00:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.788989',
                      'lng': '-105.02519',
                      'location': '5085 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '600082',
                      'time': '09:15:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.78951',
                      'lng': '-105.025186',
                      'location': '5115 N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '600178',
                      'time': '10:52:09',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.78951',
                      'lng': '-105.025186',
                      'location': '5115 N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '600179',
                      'time': '11:55:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.789243',
                      'lng': '-105.025185',
                      'location': 'W 51ST AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '600386',
                      'time': '10:00:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': 'W 49TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '600766',
                      'time': '11:57:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.787061',
                      'lng': '-105.00642',
                      'location': 'W STOLL PL / N PECOS ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '600890',
                      'time': '00:09:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.787436',
                      'lng': '-105.027566',
                      'location': 'W REGIS BLVD / N GROVE ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '601154',
                      'time': '02:16:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.787465',
                      'lng': '-105.025223',
                      'location': '5000-BLK N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '601219',
                      'time': '19:35:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '601255',
                      'time': '00:07:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '601256',
                      'time': '08:43:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '601266',
                      'time': '11:40:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.785617',
                      'lng': '-105.023954',
                      'location': '4900 N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '601416',
                      'time': '08:11:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.785617',
                      'lng': '-105.023954',
                      'location': '4900 N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '601420',
                      'time': '14:16:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.785667',
                      'lng': '-105.062656',
                      'location': '4900-BLK N HARLAN ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '601631',
                      'time': '08:22:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.788535',
                      'lng': '-105.0252',
                      'location': '5060 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '601888',
                      'time': '12:23:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.784697',
                      'lng': '-105.02395',
                      'location': '4800 N ELIOT ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '601904',
                      'time': '08:35:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '602164',
                      'time': '15:51:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.784125',
                      'lng': '-105.029896',
                      'location': '4800 N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '602569',
                      'time': '22:51:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.78255',
                      'lng': '-105.006435',
                      'location': 'W ELK PL / N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '602903',
                      'time': '12:02:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.78255',
                      'lng': '-105.006435',
                      'location': 'W ELK PL / N PECOS ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '602905',
                      'time': '11:24:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.78255',
                      'lng': '-105.006435',
                      'location': 'W ELK PL / N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '602914',
                      'time': '11:14:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.783142',
                      'lng': '-105.006425',
                      'location': 'I70 EB / N PECOS ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '603006',
                      'time': '23:23:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.782989',
                      'lng': '-105.025193',
                      'location': '4700-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '603071',
                      'time': '01:07:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.783266',
                      'lng': '-105.006427',
                      'location': 'I70 WB / N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '603682',
                      'time': '08:24:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.783848',
                      'lng': '-105.062659',
                      'location': 'W 48TH AVE / N HARLAN ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '603869',
                      'time': '11:16:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.783266',
                      'lng': '-105.006427',
                      'location': 'N PECOS ST / I70 WB',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '604096',
                      'time': '10:30:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.781977',
                      'lng': '-105.006439',
                      'location': 'W 47TH AVE / N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '604238',
                      'time': '21:10:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.783534',
                      'lng': '-105.053185',
                      'location': 'I70 EB / N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '604549',
                      'time': '11:56:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.781977',
                      'lng': '-105.006439',
                      'location': 'W 47TH AVE / N PECOS ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '604819',
                      'time': '14:35:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.783832',
                      'lng': '-105.057913',
                      'location': '5600 W 48TH AVE',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '605143',
                      'time': '11:00:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.783759',
                      'lng': '-105.034572',
                      'location': 'W 48TH AVE / N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '605308',
                      'time': '22:23:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.783759',
                      'lng': '-105.034572',
                      'location': 'W 48TH AVE / N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '605809',
                      'time': '23:06:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.783841',
                      'lng': '-105.006437',
                      'location': '4800 N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '605987',
                      'time': '15:51:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.783841',
                      'lng': '-105.006437',
                      'location': '4800-BLK N PECOS ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '606390',
                      'time': '11:54:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.783841',
                      'lng': '-105.006437',
                      'location': 'W 48TH AVE / N PECOS ST',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '606553',
                      'time': '08:48:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.783798',
                      'lng': '-105.053183',
                      'location': '4800-BLK N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '606718',
                      'time': '09:44:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.783798',
                      'lng': '-105.053183',
                      'location': '4800-BLK N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '606721',
                      'time': '08:51:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.783798',
                      'lng': '-105.053183',
                      'location': 'W 48TH AVE / N SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '606734',
                      'time': '10:16:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.783142',
                      'lng': '-105.006425',
                      'location': 'I70 EB / N PECOS ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '606892',
                      'time': '23:31:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.781977',
                      'lng': '-105.006439',
                      'location': 'W 47TH AVE / N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '607428',
                      'time': '23:14:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.782122',
                      'lng': '-105.025133',
                      'location': 'N FEDERAL BLVD / W 47TH AVE',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '607516',
                      'time': '22:21:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.783917',
                      'lng': '-105.025186',
                      'location': '4800-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '607837',
                      'time': '08:51:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.783231',
                      'lng': '-105.025191',
                      'location': '4765 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '607953',
                      'time': '09:13:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.783635',
                      'lng': '-105.025188',
                      'location': '4785 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '608378',
                      'time': '09:29:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.783917',
                      'lng': '-105.025186',
                      'location': '4800-BLK N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '609013',
                      'time': '22:30:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.783917',
                      'lng': '-105.025186',
                      'location': '4800 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '609040',
                      'time': '23:42:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.782084',
                      'lng': '-105.053243',
                      'location': '4700-BLK N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '609161',
                      'time': '10:32:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.782159',
                      'lng': '-105.02578',
                      'location': '3047 W 47TH AVE',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '609636',
                      'time': '00:41:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'N FEDERAL BLVD / I70 EB',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '610094',
                      'time': '11:49:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.783142',
                      'lng': '-105.006425',
                      'location': 'I70 EB / N PECOS ST',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '610344',
                      'time': '23:57:26',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780151',
                      'lng': '-105.008008',
                      'location': 'W 46TH AVE / N QUIVAS ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '610444',
                      'time': '12:20:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.780151',
                      'lng': '-105.008008',
                      'location': '4600-BLK N QUIVAS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '610450',
                      'time': '08:19:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780151',
                      'lng': '-105.008008',
                      'location': '1800-BLK W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '610464',
                      'time': '08:48:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.783881',
                      'lng': '-105.039263',
                      'location': '4800-BLK-OSC N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '610479',
                      'time': '17:04:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.783881',
                      'lng': '-105.039263',
                      'location': '4000 W 48TH AVE',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '610480',
                      'time': '06:27:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.783689',
                      'lng': '-105.053184',
                      'location': 'I70 WB / N SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '111',
                      'raw_row_number': '611960',
                      'time': '01:59:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.783689',
                      'lng': '-105.053184',
                      'location': 'I70 WB / N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '611963',
                      'time': '11:11:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.783689',
                      'lng': '-105.053184',
                      'location': 'I70 WB / N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '611967',
                      'time': '11:41:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': 'W 49TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '612569',
                      'time': '22:45:35',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': '3000 W 49TH AVE',
                      'outcome': 'warning',
                      'precinct': '111',
                      'raw_row_number': '612685',
                      'time': '22:56:16',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.785606',
                      'lng': '-105.025185',
                      'location': '4900-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '612877',
                      'time': '10:07:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.785694',
                      'lng': '-105.00795',
                      'location': 'W DIXIE PL / N QUIVAS ST',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '612882',
                      'time': '12:10:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.785906',
                      'lng': '-105.061391',
                      'location': '4915 N GRAY ST',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '612884',
                      'time': '09:22:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.787446',
                      'lng': '-105.03457',
                      'location': 'W REGIS BLVD / N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '111',
                      'raw_row_number': '613198',
                      'time': '14:16:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.784228',
                      'lng': '-105.02519',
                      'location': 'I70 EB / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '111',
                      'raw_row_number': '614795',
                      'time': '17:04:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '112': [{'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.764109',
                      'lng': '-104.99481',
                      'location': '3300 PARK AVE W',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '469633',
                      'time': '18:30:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.765684',
                      'lng': '-104.99495',
                      'location': 'N GLOBEVILLE RD / PARK AVE W',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '470976',
                      'time': '14:43:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.765684',
                      'lng': '-104.99495',
                      'location': 'PARK AVE W / N GLOBEVILLE RD',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '471481',
                      'time': '21:38:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.765684',
                      'lng': '-104.99495',
                      'location': '3490 PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '474205',
                      'time': '00:01:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.764813',
                      'lng': '-104.995018',
                      'location': '3381 PARK AVE W',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '474270',
                      'time': '21:59:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.765292',
                      'lng': '-104.99485',
                      'location': '3440 PARK AVE W',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '474397',
                      'time': '01:49:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.765723',
                      'lng': '-104.994915',
                      'location': '3500 PARK AVE W',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '475114',
                      'time': '17:04:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.765684',
                      'lng': '-104.99495',
                      'location': 'N GLOBEVILLE RD / PARK AVE W',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '475220',
                      'time': '22:17:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.765723',
                      'lng': '-104.994915',
                      'location': '3500 PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '475715',
                      'time': '20:04:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.765623',
                      'lng': '-104.994905',
                      'location': '3480 PARK AVE W',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '480744',
                      'time': '02:18:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.765684',
                      'lng': '-104.99495',
                      'location': 'N GLOBEVILLE RD / PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '480811',
                      'time': '12:59:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.765684',
                      'lng': '-104.99495',
                      'location': 'N GLOBEVILLE RD / PARK AVE W',
                      'outcome': 'warning',
                      'precinct': '112',
                      'raw_row_number': '481288',
                      'time': '04:45:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.767917',
                      'lng': '-104.985416',
                      'location': '1940 31ST ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '482839',
                      'time': '12:32:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.768018',
                      'lng': '-104.99497',
                      'location': 'I25 NB / PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '483354',
                      'time': '15:30:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.768018',
                      'lng': '-104.99497',
                      'location': 'PARK AVE W / I25 NB',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '483527',
                      'time': '00:11:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.768018',
                      'lng': '-104.99497',
                      'location': 'PARK AVE W / I25 NB',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '483528',
                      'time': '10:32:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.768018',
                      'lng': '-104.99497',
                      'location': 'I25 NB / PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '483643',
                      'time': '15:30:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.768018',
                      'lng': '-104.99497',
                      'location': 'PARK AVE W / I25 NB',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '483713',
                      'time': '22:03:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.76833',
                      'lng': '-104.994971',
                      'location': '0 0 I25 SB / N FOX ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '483883',
                      'time': '09:38:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.768018',
                      'lng': '-104.99497',
                      'location': 'I25 NB / PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '484109',
                      'time': '10:08:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.76833',
                      'lng': '-104.994971',
                      'location': 'I25 SB / PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '485415',
                      'time': '16:10:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.76833',
                      'lng': '-104.994971',
                      'location': 'I25 SB / PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '485765',
                      'time': '01:35:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.76833',
                      'lng': '-104.994971',
                      'location': 'PARK AVE W / I25 SB',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '485972',
                      'time': '13:17:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.769116',
                      'lng': '-104.995296',
                      'location': 'W 38TH AVE / N FOX ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '486106',
                      'time': '17:50:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.769116',
                      'lng': '-104.995296',
                      'location': 'W 38TH AVE / N FOX ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '486279',
                      'time': '08:51:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769116',
                      'lng': '-104.995296',
                      'location': 'W 38TH AVE / N FOX ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '486489',
                      'time': '03:23:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769116',
                      'lng': '-104.995296',
                      'location': 'W 38TH AVE / N FOX ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '486604',
                      'time': '12:28:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.766185',
                      'lng': '-104.994849',
                      'location': '3600-BLK PARK AVE W',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '487128',
                      'time': '22:22:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.769288',
                      'lng': '-105.004138',
                      'location': '3800 N NAVAJO ST',
                      'outcome': 'warning',
                      'precinct': '112',
                      'raw_row_number': '492038',
                      'time': '10:25:59',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769288',
                      'lng': '-105.004138',
                      'location': 'W 38TH AVE / N NAVAJO ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '492178',
                      'time': '11:23:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769288',
                      'lng': '-105.004138',
                      'location': 'W 38TH AVE / N NAVAJO ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '492186',
                      'time': '00:38:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.770522',
                      'lng': '-105.001762',
                      'location': 'W 39TH AVE / N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '492415',
                      'time': '09:45:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'L - Clearance',
                      'district': '1',
                      'lat': '39.770522',
                      'lng': '-105.001762',
                      'location': 'W 39TH AVE / N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '492493',
                      'time': '10:58:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.769282',
                      'lng': '-105.00176',
                      'location': 'W 38TH AVE / N LIPAN ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '492559',
                      'time': '08:22:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.769282',
                      'lng': '-105.00176',
                      'location': 'W 38TH AVE / N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '492642',
                      'time': '02:07:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769282',
                      'lng': '-105.00176',
                      'location': 'W 38TH AVE / N LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '492643',
                      'time': '00:23:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.769394',
                      'lng': '-104.999408',
                      'location': 'W 38TH N FRTG / N JASON ST',
                      'outcome': 'warning',
                      'precinct': '112',
                      'raw_row_number': '494139',
                      'time': '09:52:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769282',
                      'lng': '-105.001772',
                      'location': '1301 W 38TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '495480',
                      'time': '17:45:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.770531',
                      'lng': '-105.002971',
                      'location': '1400-BLK W 39TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '495809',
                      'time': '11:49:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.770531',
                      'lng': '-105.002971',
                      'location': 'W 39TH AVE / N MARIPOSA ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '496415',
                      'time': '02:33:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.770536',
                      'lng': '-105.004202',
                      'location': 'W 39TH AVE / N NAVAJO ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '497013',
                      'time': '16:23:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769282',
                      'lng': '-105.00176',
                      'location': 'W 38TH AVE / N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '497594',
                      'time': '22:11:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.769282',
                      'lng': '-105.00176',
                      'location': 'W 38TH AVE / N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '498222',
                      'time': '12:12:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.770502',
                      'lng': '-104.993652',
                      'location': 'W 39TH AVE / N ELATI ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '500336',
                      'time': '13:18:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.769282',
                      'lng': '-105.00176',
                      'location': 'W 38TH AVE / N LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '500339',
                      'time': '00:45:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.771753',
                      'lng': '-105.001768',
                      'location': 'W 40TH AVE / N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '500572',
                      'time': '08:49:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Detox Van',
                      'district': '1',
                      'lat': '39.772052',
                      'lng': '-105.004198',
                      'location': '4022 N NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '500746',
                      'time': '22:55:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.771753',
                      'lng': '-105.001768',
                      'location': '4000-BLK-KALAMATH N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '500841',
                      'time': '09:41:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.772778',
                      'lng': '-104.980959',
                      'location': '3507 RINGSBY CT',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '501054',
                      'time': '18:06:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.771729',
                      'lng': '-105.000589',
                      'location': '4000 N KALAMATH ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '505209',
                      'time': '09:39:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.772975',
                      'lng': '-104.999405',
                      'location': 'W 41ST AVE / N JASON ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '506873',
                      'time': '02:38:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.774291',
                      'lng': '-105.005436',
                      'location': '4200-NAVAJO N OSAGE ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '506925',
                      'time': '02:46:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.77299',
                      'lng': '-105.001757',
                      'location': 'W 41ST AVE / N LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '507551',
                      'time': '19:59:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.774205',
                      'lng': '-104.993621',
                      'location': '4200-Blk-Fox N ELATI ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '509133',
                      'time': '23:40:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.774224',
                      'lng': '-104.994836',
                      'location': 'W 42ND AVE / N FOX ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '509246',
                      'time': '10:11:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.771738',
                      'lng': '-104.994853',
                      'location': 'W 40TH AVE / N FOX ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '509863',
                      'time': '01:19:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed,T -',
                      'district': '1',
                      'lat': '39.771789',
                      'lng': '-105.005433',
                      'location': 'W 40TH AVE / N OSAGE ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '510198',
                      'time': '07:35:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.775534',
                      'lng': '-105.002957',
                      'location': 'W 43RD AVE / N MARIPOSA ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '515613',
                      'time': '01:05:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.775198',
                      'lng': '-104.992325',
                      'location': '4300 N DELAWARE ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '519682',
                      'time': '09:13:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.775479',
                      'lng': '-105.000583',
                      'location': 'W 43RD AVE / N KALAMATH ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '525479',
                      'time': '12:14:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.77653',
                      'lng': '-104.980163',
                      'location': '4400-BLK N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '567577',
                      'time': '10:10:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.776597',
                      'lng': '-104.992325',
                      'location': 'W 44TH AVE / N DELAWARE ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '567653',
                      'time': '09:50:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.776543',
                      'lng': '-105.00542',
                      'location': '1500 W 44TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '573017',
                      'time': '22:16:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.776584',
                      'lng': '-105.002959',
                      'location': '4400 N MARIPOSA WAY',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '573488',
                      'time': '08:01:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.779677',
                      'lng': '-104.979159',
                      'location': 'I70 WB / N WASHINGTON ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '573612',
                      'time': '22:41:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.77836',
                      'lng': '-105.004166',
                      'location': '4500-BLK N NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '573971',
                      'time': '13:57:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.778337',
                      'lng': '-104.998202',
                      'location': 'W 45TH AVE / N INCA ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '573983',
                      'time': '08:51:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.778352',
                      'lng': '-105.001706',
                      'location': '4500-BLK N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '574194',
                      'time': '05:41:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.77833',
                      'lng': '-104.979244',
                      'location': 'E 45TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '574380',
                      'time': '09:48:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'No Police Needed',
                      'district': '1',
                      'lat': '39.779399',
                      'lng': '-104.979154',
                      'location': 'I70 EB / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '575029',
                      'time': '13:34:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.780044',
                      'lng': '-104.989194',
                      'location': 'I70 EB / I25 NB',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '575707',
                      'time': '02:42:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.778344',
                      'lng': '-104.987609',
                      'location': 'E 45TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '575937',
                      'time': '15:34:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.778344',
                      'lng': '-104.987609',
                      'location': 'E 45TH AVE / N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '112',
                      'raw_row_number': '575942',
                      'time': '16:10:11',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780044',
                      'lng': '-104.989194',
                      'location': 'I25 NB / I70 EB',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '576221',
                      'time': '11:16:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.778331',
                      'lng': '-104.985848',
                      'location': 'E 45TH AVE / N LINCOLN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '576500',
                      'time': '01:14:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.77833',
                      'lng': '-104.979244',
                      'location': 'E 45TH AVE / N WASHINGTON ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '576621',
                      'time': '16:24:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.77833',
                      'lng': '-104.979244',
                      'location': 'E 45TH AVE / N WASHINGTON ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '576852',
                      'time': '01:56:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.779677',
                      'lng': '-104.979159',
                      'location': 'I70 WB / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '578835',
                      'time': '13:30:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.779677',
                      'lng': '-104.979159',
                      'location': 'I70 WB / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '578861',
                      'time': '22:14:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.779741',
                      'lng': '-104.98585',
                      'location': 'I70 EB / N LINCOLN ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '578954',
                      'time': '11:40:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.780044',
                      'lng': '-104.989194',
                      'location': 'I25 NB / I70 EB',
                      'outcome': 'warning',
                      'precinct': '112',
                      'raw_row_number': '580038',
                      'time': '00:32:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780044',
                      'lng': '-104.989194',
                      'location': 'I70 EB / I25 NB',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '580039',
                      'time': '23:51:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780044',
                      'lng': '-104.989194',
                      'location': 'I25 NB / I70 EB',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '580397',
                      'time': '14:22:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.780044',
                      'lng': '-104.989194',
                      'location': 'I25 NB / I70 EB',
                      'outcome': 'warning',
                      'precinct': '112',
                      'raw_row_number': '580534',
                      'time': '12:01:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.780044',
                      'lng': '-104.989194',
                      'location': 'I25 NB / I70 EB',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '580558',
                      'time': '01:08:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.778324',
                      'lng': '-104.982431',
                      'location': 'E 45TH AVE / N LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '581361',
                      'time': '10:11:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.77833',
                      'lng': '-104.979244',
                      'location': 'E 45TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '581408',
                      'time': '15:42:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.001723',
                      'location': '4600-BLK N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '581980',
                      'time': '18:59:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.001723',
                      'location': '4600 N LIPAN ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '582091',
                      'time': '19:09:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.78011',
                      'lng': '-104.989556',
                      'location': 'I70 EB / I25 SB',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '582220',
                      'time': '08:38:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.001723',
                      'location': '4600 N LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '582450',
                      'time': '20:54:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.001723',
                      'location': '4600-BLK N LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '582456',
                      'time': '14:35:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.001723',
                      'location': '4600-BLK N LIPAN ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '582814',
                      'time': '17:59:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.78021',
                      'lng': '-104.989193',
                      'location': 'I25 NB / I70 WB',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '582967',
                      'time': '03:07:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.78021',
                      'lng': '-104.989193',
                      'location': 'I70 WB / I25 NB',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '583020',
                      'time': '08:20:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780117',
                      'lng': '-104.980079',
                      'location': '4600 N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '583798',
                      'time': '00:16:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.78027',
                      'lng': '-104.989561',
                      'location': 'I70 WB / I25 SB',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '583925',
                      'time': '08:31:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.77833',
                      'lng': '-104.979244',
                      'location': 'E 45TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '586036',
                      'time': '22:01:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.77833',
                      'lng': '-104.979244',
                      'location': 'E 45TH AVE / N WASHINGTON ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '586037',
                      'time': '15:45:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780163',
                      'lng': '-105.004153',
                      'location': 'W 46TH AVE / N NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '586394',
                      'time': '01:44:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780163',
                      'lng': '-105.004153',
                      'location': 'W 46TH AVE / N NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '586426',
                      'time': '05:21:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780164',
                      'lng': '-105.002915',
                      'location': '1344 W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '586480',
                      'time': '07:00:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.78011',
                      'lng': '-104.989556',
                      'location': 'I70 EB / I25 SB',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '586497',
                      'time': '08:17:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.002159',
                      'location': '1311 W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '586720',
                      'time': '20:12:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.002159',
                      'location': '1311 W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '586746',
                      'time': '14:13:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.002159',
                      'location': '1311 W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '586793',
                      'time': '02:15:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.778326',
                      'lng': '-104.980159',
                      'location': 'E 45TH AVE / N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '586844',
                      'time': '03:28:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.002159',
                      'location': '1311 W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '587320',
                      'time': '17:25:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780154',
                      'lng': '-104.985783',
                      'location': '4600 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '587599',
                      'time': '23:42:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.78027',
                      'lng': '-104.989561',
                      'location': 'I70 WB / I25 SB',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '587839',
                      'time': '14:15:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.78027',
                      'lng': '-104.989561',
                      'location': 'I70 WB / I25 SB',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '588232',
                      'time': '10:38:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.780487',
                      'lng': '-104.979019',
                      'location': '4600 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '588782',
                      'time': '23:23:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.780487',
                      'lng': '-104.979019',
                      'location': '4600 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '588783',
                      'time': '22:08:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.78011',
                      'lng': '-104.989556',
                      'location': 'I25 SB / I70 EB',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '589562',
                      'time': '02:42:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.002159',
                      'location': '1311 W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '589654',
                      'time': '20:10:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.78011',
                      'lng': '-104.989556',
                      'location': 'I70 EB / I25 SB',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '589743',
                      'time': '07:16:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.002159',
                      'location': '1311 W 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '589855',
                      'time': '14:22:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.780165',
                      'lng': '-105.002159',
                      'location': '1311 W 46TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '589876',
                      'time': '16:59:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.78021',
                      'lng': '-104.989193',
                      'location': 'I70 WB / I25 NB',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '590315',
                      'time': '13:38:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.78027',
                      'lng': '-104.989561',
                      'location': 'I25 SB / I70 WB',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '590614',
                      'time': '22:19:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.78027',
                      'lng': '-104.989561',
                      'location': 'I70 WB / I25 SB',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '590818',
                      'time': '16:15:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.780487',
                      'lng': '-104.979019',
                      'location': '4600 N WASHINGTON ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '590922',
                      'time': '22:25:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.781851',
                      'lng': '-104.981202',
                      'location': 'E 47TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '591401',
                      'time': '22:35:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.781851',
                      'lng': '-104.981202',
                      'location': 'E 47TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '591587',
                      'time': '18:48:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.781851',
                      'lng': '-104.981202',
                      'location': 'E 47TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'warning',
                      'precinct': '112',
                      'raw_row_number': '591613',
                      'time': '17:33:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.786944',
                      'lng': '-105.005137',
                      'location': '5020 N OSAGE ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '592974',
                      'time': '13:02:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.790287',
                      'lng': '-105.005132',
                      'location': '1500-BLK W BERKELEY PL',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '594322',
                      'time': '05:16:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.787387',
                      'lng': '-104.978281',
                      'location': '5000 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '594766',
                      'time': '00:49:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.787387',
                      'lng': '-104.978281',
                      'location': 'E 50TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '594773',
                      'time': '18:27:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.789193',
                      'lng': '-104.988608',
                      'location': 'W 51ST AVE / N ACOMA ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '595175',
                      'time': '00:15:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.788975',
                      'lng': '-104.97598',
                      'location': 'E 51ST AVE / N EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '595376',
                      'time': '17:04:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.787387',
                      'lng': '-104.978281',
                      'location': 'E 50TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '595911',
                      'time': '08:21:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.787387',
                      'lng': '-104.978281',
                      'location': '5000-BLK N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '595914',
                      'time': '15:36:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.788969',
                      'lng': '-104.977125',
                      'location': '800 E 51ST AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '596544',
                      'time': '19:33:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.784108',
                      'lng': '-104.978297',
                      'location': 'E 48TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '597618',
                      'time': '22:47:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.001695',
                      'location': '4700-BLK N LIPAN ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '600309',
                      'time': '17:50:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.001695',
                      'location': '4700 N LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '602443',
                      'time': '17:26:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.783776',
                      'lng': '-104.987601',
                      'location': 'E 48TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '602490',
                      'time': '07:19:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.78198',
                      'lng': '-105.003269',
                      'location': '1400 W 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '602730',
                      'time': '17:43:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.002206',
                      'location': '1300-BLK W 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '603685',
                      'time': '18:20:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.002206',
                      'location': '1300-BLK W 47TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '603690',
                      'time': '21:22:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781975',
                      'lng': '-105.001228',
                      'location': '1200 W 47TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '604669',
                      'time': '18:35:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781975',
                      'lng': '-105.001228',
                      'location': '1200 W 47TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '604753',
                      'time': '21:21:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.002206',
                      'location': '1300-BLK W 47TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '604830',
                      'time': '22:06:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781975',
                      'lng': '-105.001228',
                      'location': '1200 W 47TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '605168',
                      'time': '21:53:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.781975',
                      'lng': '-105.001228',
                      'location': '1200 W 47TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '605171',
                      'time': '20:55:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781975',
                      'lng': '-105.001228',
                      'location': '1200 W 47TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '605177',
                      'time': '21:08:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.781975',
                      'lng': '-105.001228',
                      'location': '1200-BLK W 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '605241',
                      'time': '18:36:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.002206',
                      'location': '1300 W 47TH AVE',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '605315',
                      'time': '22:19:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.002206',
                      'location': '1300-BLK W 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '605415',
                      'time': '18:37:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.784061',
                      'lng': '-104.989558',
                      'location': 'I25 SB / W 48TH AVE',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '606239',
                      'time': '09:11:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.783831',
                      'lng': '-105.00396',
                      'location': '1400-BLK W 48TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '606565',
                      'time': '09:49:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.78198',
                      'lng': '-105.003269',
                      'location': '1400-BLK W 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '606742',
                      'time': '20:53:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.001695',
                      'location': 'W 47TH AVE / N LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '608066',
                      'time': '17:39:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781978',
                      'lng': '-105.005343',
                      'location': '1595 W 47TH AVE',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '608331',
                      'time': '16:49:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.78381',
                      'lng': '-104.982307',
                      'location': 'E 48TH AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '608476',
                      'time': '08:22:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.781848',
                      'lng': '-104.97864',
                      'location': 'E 47TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '608899',
                      'time': '22:11:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.781927',
                      'lng': '-104.985802',
                      'location': '4700-BLK N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '608991',
                      'time': '16:37:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.001695',
                      'location': '4700 N LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '609243',
                      'time': '18:05:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.001695',
                      'location': 'W 47TH AVE / N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '609256',
                      'time': '08:55:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.781981',
                      'lng': '-105.001695',
                      'location': 'W 47TH AVE / N LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '112',
                      'raw_row_number': '609261',
                      'time': '22:12:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.78198',
                      'lng': '-105.003269',
                      'location': '1400-BLK W 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '611620',
                      'time': '20:53:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.78198',
                      'lng': '-105.003269',
                      'location': '1400-BLK W 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '611628',
                      'time': '18:20:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.78198',
                      'lng': '-105.003269',
                      'location': '1400-BLK W 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '611632',
                      'time': '22:29:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.78198',
                      'lng': '-105.003269',
                      'location': '1400 W 47TH AVE',
                      'outcome': 'warning',
                      'precinct': '112',
                      'raw_row_number': '611656',
                      'time': '21:20:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.785579',
                      'lng': '-104.978299',
                      'location': '4900 N WASHINGTON ST',
                      'outcome': 'citation',
                      'precinct': '112',
                      'raw_row_number': '613043',
                      'time': '22:21:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.78922',
                      'lng': '-104.987561',
                      'location': 'E 51ST AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '112',
                      'raw_row_number': '613985',
                      'time': '16:05:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'}],
             '113': [{'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.756304',
                      'lng': '-105.015835',
                      'location': 'N SPEER BLVD / N ZUNI ST',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '404762',
                      'time': '13:33:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.754243',
                      'lng': '-105.010102',
                      'location': 'PLATTE ST / N SPEER BLVD',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '417809',
                      'time': '18:17:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.756304',
                      'lng': '-105.015835',
                      'location': 'N ZUNI ST / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '423129',
                      'time': '22:25:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.757188',
                      'lng': '-105.014473',
                      'location': '2800-BLK N WYANDOT ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '424549',
                      'time': '02:28:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.757177',
                      'lng': '-105.015836',
                      'location': '2800-BLK N ZUNI ST',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '424675',
                      'time': '11:48:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.757177',
                      'lng': '-105.015836',
                      'location': 'W 28TH AVE / N ZUNI ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '424685',
                      'time': '23:48:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.755494',
                      'lng': '-105.010428',
                      'location': '1400 PLATTE ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '426498',
                      'time': '08:06:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.759254',
                      'lng': '-105.008087',
                      'location': '17TH ST / CENTRAL ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '427353',
                      'time': '20:41:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.756612',
                      'lng': '-105.015831',
                      'location': 'W 27TH AVE / N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '427681',
                      'time': '10:56:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.759404',
                      'lng': '-105.02816',
                      'location': 'W HAYWARD PL / N HOOKER ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '427855',
                      'time': '09:18:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.759541',
                      'lng': '-105.023503',
                      'location': '2960 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '427867',
                      'time': '16:04:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.759541',
                      'lng': '-105.023503',
                      'location': '2960 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '427911',
                      'time': '08:49:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'No Police Needed',
                      'district': '1',
                      'lat': '39.759541',
                      'lng': '-105.023503',
                      'location': '2960 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '428362',
                      'time': '09:13:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.759541',
                      'lng': '-105.023503',
                      'location': '2960 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '428366',
                      'time': '10:22:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.759541',
                      'lng': '-105.023503',
                      'location': '2960 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '428368',
                      'time': '13:21:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.758917',
                      'lng': '-105.015835',
                      'location': '2400-CAITHNESS W DUNKELD PL',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '430925',
                      'time': '06:18:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.758501',
                      'lng': '-105.039304',
                      'location': 'W 29TH AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '432115',
                      'time': '01:27:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.758403',
                      'lng': '-105.01448',
                      'location': '2300-BLK W 29TH AVE',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '432130',
                      'time': '11:54:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.758423',
                      'lng': '-105.018158',
                      'location': 'W 29TH AVE / N FIRTH CT',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '432232',
                      'time': '00:16:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.758477',
                      'lng': '-105.025234',
                      'location': '3000-BLK W 29TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '432685',
                      'time': '00:19:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.758496',
                      'lng': '-105.032282',
                      'location': '2900-BLK N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '432788',
                      'time': '08:46:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.759254',
                      'lng': '-105.008087',
                      'location': '17TH ST / CENTRAL ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '435116',
                      'time': '17:50:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Vehicle Towed',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '435218',
                      'time': '06:28:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.759254',
                      'lng': '-105.008087',
                      'location': '17TH ST / CENTRAL ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '435596',
                      'time': '21:04:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.761416',
                      'lng': '-105.006249',
                      'location': '19TH ST / CENTRAL ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '435703',
                      'time': '20:16:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.761243',
                      'lng': '-105.034614',
                      'location': '3100 N LOWELL BLVD',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '436144',
                      'time': '10:00:24',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.761243',
                      'lng': '-105.034614',
                      'location': '3100-BLK N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '436145',
                      'time': '08:40:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.761243',
                      'lng': '-105.034614',
                      'location': '3100-BLK N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '436154',
                      'time': '08:23:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '436176',
                      'time': '09:45:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.762022',
                      'lng': '-105.025242',
                      'location': 'W 32ND AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '436204',
                      'time': '18:14:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '436626',
                      'time': '09:58:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.759645',
                      'lng': '-105.014482',
                      'location': '2300 W 30TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '437229',
                      'time': '23:41:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.762022',
                      'lng': '-105.025242',
                      'location': 'W 32ND AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '438021',
                      'time': '23:10:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.762022',
                      'lng': '-105.025242',
                      'location': 'W 32ND AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '438072',
                      'time': '02:09:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.762022',
                      'lng': '-105.025242',
                      'location': 'W 32ND AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '438129',
                      'time': '01:06:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.760158',
                      'lng': '-105.015835',
                      'location': '2400-BLK W CAITHNESS PL',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '439018',
                      'time': '15:23:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.760299',
                      'lng': '-105.049818',
                      'location': '4900-BLK W 30TH AVE',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '439021',
                      'time': '17:34:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.75831',
                      'lng': '-105.009287',
                      'location': '16TH ST / CENTRAL ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '439632',
                      'time': '22:44:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.758404',
                      'lng': '-105.013147',
                      'location': '2900-BLK N VALLEJO ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '439667',
                      'time': '14:48:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.758404',
                      'lng': '-105.015835',
                      'location': '2900-BLK N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '439842',
                      'time': '14:34:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.760185',
                      'lng': '-105.006886',
                      'location': '18TH ST / CENTRAL ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '439936',
                      'time': '23:49:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.760185',
                      'lng': '-105.006886',
                      'location': '18TH ST / CENTRAL ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '439937',
                      'time': '17:25:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.758477',
                      'lng': '-105.025234',
                      'location': 'W 29TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '440392',
                      'time': '11:55:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.758463',
                      'lng': '-105.022072',
                      'location': '2800-BLK W 29TH AVE',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '440624',
                      'time': '17:54:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.758474',
                      'lng': '-105.023614',
                      'location': '2900-BLK W 29TH AVE',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '440667',
                      'time': '01:35:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.758477',
                      'lng': '-105.025234',
                      'location': '2900-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '440842',
                      'time': '00:35:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.760951',
                      'lng': '-105.025225',
                      'location': '3109 N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '441391',
                      'time': '09:25:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '442207',
                      'time': '07:35:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.760258',
                      'lng': '-105.025236',
                      'location': 'N SPEER BLVD / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '442444',
                      'time': '00:07:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.760856',
                      'lng': '-105.025224',
                      'location': '3100-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '442618',
                      'time': '02:41:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '443076',
                      'time': '08:58:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.760258',
                      'lng': '-105.025236',
                      'location': '3000 N SPEER BLVD',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '443100',
                      'time': '11:51:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.761084',
                      'lng': '-105.026852',
                      'location': '3100 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '443132',
                      'time': '09:16:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.761185',
                      'lng': '-105.052086',
                      'location': '3100-BLK N ZENOBIA ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '443149',
                      'time': '17:12:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '443385',
                      'time': '10:09:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.7632',
                      'lng': '-105.025244',
                      'location': '3000-BLK W HIGHLAND PARK PL',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '443475',
                      'time': '08:45:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.7632',
                      'lng': '-105.025244',
                      'location': 'W 33RD AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '443533',
                      'time': '09:34:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.7632',
                      'lng': '-105.025244',
                      'location': '3000-BLK W HIGHLAND PARK PL',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '443545',
                      'time': '08:06:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.762125',
                      'lng': '-105.032265',
                      'location': '3400 W 32ND AVE',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '443627',
                      'time': '11:40:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '443806',
                      'time': '06:49:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'No Police Needed',
                      'district': '1',
                      'lat': '39.763228',
                      'lng': '-105.004132',
                      'location': 'W 33RD AVE / N NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '444143',
                      'time': '00:09:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.761631',
                      'lng': '-105.005718',
                      'location': 'CENTRAL ST / 20TH ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '444441',
                      'time': '22:38:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.7632',
                      'lng': '-105.025244',
                      'location': '3000-BLK W HIGHLAND PARK PL',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '444818',
                      'time': '00:22:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.762022',
                      'lng': '-105.025242',
                      'location': 'N FEDERAL BLVD / W 32ND AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '445198',
                      'time': '18:16:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.76207',
                      'lng': '-105.028819',
                      'location': 'W 32ND AVE / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '445255',
                      'time': '11:19:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.762027',
                      'lng': '-105.017405',
                      'location': '3200 N ALCOTT ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '445267',
                      'time': '07:34:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.759713',
                      'lng': '-105.007495',
                      'location': '1750 CENTRAL ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '446814',
                      'time': '18:03:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '447279',
                      'time': '11:44:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.760779',
                      'lng': '-105.015835',
                      'location': '2400-BLK W ARGYLE PL',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '447364',
                      'time': '16:31:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.760799',
                      'lng': '-105.020068',
                      'location': 'W CAITHNESS PL / W DUNKELD PL',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '447373',
                      'time': '16:44:01',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.760855',
                      'lng': '-105.029904',
                      'location': '3100-BLK N IRVING ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '447390',
                      'time': '16:33:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.760691',
                      'lng': '-105.023626',
                      'location': '2900-BLK W DOUGLAS PL',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '447673',
                      'time': '11:29:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.76095',
                      'lng': '-105.004333',
                      'location': 'I25 NB / 20TH ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '448734',
                      'time': '22:47:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '448827',
                      'time': '06:50:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.760258',
                      'lng': '-105.025236',
                      'location': 'N SPEER BLVD / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '449338',
                      'time': '15:04:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.759963',
                      'lng': '-105.024651',
                      'location': '2986 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '449627',
                      'time': '07:12:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.760258',
                      'lng': '-105.025236',
                      'location': '3000-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '449927',
                      'time': '15:09:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.76095',
                      'lng': '-105.004333',
                      'location': '20TH ST / I25 NB',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '450246',
                      'time': '12:26:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.760258',
                      'lng': '-105.025236',
                      'location': 'N SPEER BLVD / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '450272',
                      'time': '11:06:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '450308',
                      'time': '09:33:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '450958',
                      'time': '07:12:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.760856',
                      'lng': '-105.025224',
                      'location': 'N FEDERAL BLVD / W DOUGLAS PL',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '451021',
                      'time': '23:28:01',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.761162',
                      'lng': '-105.004764',
                      'location': 'I25 SB / 20TH ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '451251',
                      'time': '07:07:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.760258',
                      'lng': '-105.025236',
                      'location': 'N SPEER BLVD / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '451495',
                      'time': '09:06:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.760807',
                      'lng': '-105.012472',
                      'location': 'W 31ST AVE / N LYLE CT',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '451661',
                      'time': '17:09:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.76122',
                      'lng': '-105.044',
                      'location': '4400 W 31ST AVE',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '451706',
                      'time': '18:37:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.762016',
                      'lng': '-105.023607',
                      'location': '2900-BLK W 32ND AVE',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '452517',
                      'time': '10:01:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.762127',
                      'lng': '-105.030032',
                      'location': '3200-BLK N IRVING ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '452593',
                      'time': '17:25:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.762007',
                      'lng': '-105.00528',
                      'location': 'W 32ND AVE / N OSAGE ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '452884',
                      'time': '02:20:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.762484',
                      'lng': '-105.017406',
                      'location': '3238 N ALCOTT ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '453288',
                      'time': '09:24:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.763923',
                      'lng': '-105.042839',
                      'location': '4300 W 33RD AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '454415',
                      'time': '09:45:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.764439',
                      'lng': '-105.009611',
                      'location': 'W 34TH AVE / N SHOSHONE ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '454808',
                      'time': '18:21:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.764431',
                      'lng': '-105.005286',
                      'location': '1600 W 34TH AVE',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '455457',
                      'time': '08:23:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.76207',
                      'lng': '-105.028819',
                      'location': 'W 32ND AVE / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '455669',
                      'time': '09:26:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.763223000000004',
                      'lng': '-105.009606',
                      'location': 'W 33RD AVE / N SHOSHONE ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '457789',
                      'time': '19:24:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.762021',
                      'lng': '-105.018969',
                      'location': 'N BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '457880',
                      'time': '11:47:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.763162',
                      'lng': '-105.001201',
                      'location': '3550 ROCKMONT DR',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '458086',
                      'time': '06:23:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.762127',
                      'lng': '-105.030032',
                      'location': '3200 N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '458248',
                      'time': '08:39:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.762125',
                      'lng': '-105.036959',
                      'location': 'W 32ND AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '458786',
                      'time': '08:32:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.762021',
                      'lng': '-105.020519',
                      'location': 'W 32ND AVE / N CLAY ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '459060',
                      'time': '10:59:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.762043',
                      'lng': '-105.006442',
                      'location': 'W 32ND AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '459149',
                      'time': '09:04:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.762139',
                      'lng': '-105.034608',
                      'location': '3200-BLK N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '459417',
                      'time': '10:32:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Vehicle Towed',
                      'district': '1',
                      'lat': '39.763003',
                      'lng': '-105.030059',
                      'location': '3300 W MONCRIEFF PL',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '459533',
                      'time': '12:10:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.7632',
                      'lng': '-105.025244',
                      'location': 'W HIGHLAND PARK PL / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '460479',
                      'time': '22:09:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.762139',
                      'lng': '-105.034608',
                      'location': 'W 32ND AVE / N LOWELL BLVD',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '460633',
                      'time': '02:39:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.763226',
                      'lng': '-105.012779',
                      'location': 'W 33RD AVE / N VALLEJO ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '461399',
                      'time': '10:15:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.762021',
                      'lng': '-105.020519',
                      'location': 'W 32ND AVE / N CLAY ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '461453',
                      'time': '12:10:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.762021',
                      'lng': '-105.020519',
                      'location': 'W 32ND AVE / N CLAY ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '461461',
                      'time': '23:53:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.762018',
                      'lng': '-105.01819',
                      'location': 'W 32ND AVE / N FIFE CT',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '462369',
                      'time': '00:08:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.76321',
                      'lng': '-105.020519',
                      'location': 'W 33RD AVE / N CLAY ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '463857',
                      'time': '09:00:43',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.762634',
                      'lng': '-105.006442',
                      'location': '3200-BLK-OSAGE N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '463889',
                      'time': '17:49:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.76322',
                      'lng': '-105.018961',
                      'location': '3300 N BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '464056',
                      'time': '07:44:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.762024',
                      'lng': '-105.014479',
                      'location': 'W 32ND AVE / N WYANDOT ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '464279',
                      'time': '00:33:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.764423',
                      'lng': '-105.025173',
                      'location': 'W 34TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '465282',
                      'time': '15:05:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.764423',
                      'lng': '-105.025173',
                      'location': 'W 34TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '465331',
                      'time': '00:17:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.764807',
                      'lng': '-105.052613',
                      'location': '5100-BLK W 34TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '468899',
                      'time': '22:02:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.763958',
                      'lng': '-105.039311',
                      'location': '3300-BLK-OSCE N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '469244',
                      'time': '10:32:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.766051',
                      'lng': '-105.00645',
                      'location': '3534 N PECOS ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '473835',
                      'time': '10:11:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.764883',
                      'lng': '-105.001761',
                      'location': 'N LIPAN ST / N KALAMATH ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '474116',
                      'time': '09:11:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.764872',
                      'lng': '-105.039317',
                      'location': '3400 N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '474141',
                      'time': '08:22:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.765631',
                      'lng': '-105.020512',
                      'location': 'W 35TH AVE / N CLAY ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '474607',
                      'time': '22:41:06',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.76574',
                      'lng': '-105.044013',
                      'location': 'W 35TH AVE / N TENNYSON ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '474652',
                      'time': '22:32:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.765634',
                      'lng': '-105.017422',
                      'location': 'W 35TH AVE / N ALCOTT ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '474951',
                      'time': '22:37:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.765644',
                      'lng': '-105.015858',
                      'location': '3500 N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '474990',
                      'time': '08:11:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.768057',
                      'lng': '-105.011202',
                      'location': '3700-BLK N TEJON ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '475784',
                      'time': '16:25:17',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.766614',
                      'lng': '-105.050698',
                      'location': '3600-BLK N YATES ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '477762',
                      'time': '10:51:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.766829',
                      'lng': '-105.022883',
                      'location': '2851 W 36TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '479592',
                      'time': '11:15:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.76561',
                      'lng': '-105.025233',
                      'location': '3000-BLK W 35TH AVE',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '479919',
                      'time': '09:29:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.765623',
                      'lng': '-105.02375',
                      'location': '2908 W 35TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '479954',
                      'time': '09:18:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.766848',
                      'lng': '-105.018938',
                      'location': '3600-BLK N BRYANT ST',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '480070',
                      'time': '01:17:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.765594',
                      'lng': '-105.029938',
                      'location': 'W 35TH AVE / N IRVING ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '480120',
                      'time': '00:20:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.765633',
                      'lng': '-105.031639',
                      'location': '3371 W 35TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '480190',
                      'time': '01:56:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.76561',
                      'lng': '-105.025233',
                      'location': 'N FEDERAL BLVD / W 35TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '480237',
                      'time': '14:14:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.76561',
                      'lng': '-105.025233',
                      'location': 'W 35TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '480279',
                      'time': '09:10:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.765815',
                      'lng': '-105.036965',
                      'location': 'W 35TH AVE / N NEWTON ST',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '480327',
                      'time': '14:32:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.765637',
                      'lng': '-105.00297',
                      'location': '1400-BLK W 35TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '480665',
                      'time': '11:49:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.767416',
                      'lng': '-105.027605',
                      'location': '3700-FEDERAL N GROVE ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '481415',
                      'time': '09:12:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.767529',
                      'lng': '-105.052077',
                      'location': '3700 N ZENOBIA ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '481453',
                      'time': '08:40:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.768041',
                      'lng': '-105.023617',
                      'location': '2900-BLK W 37TH AVE',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '482713',
                      'time': '16:34:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.768041',
                      'lng': '-105.023617',
                      'location': '2900 W 37TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '482726',
                      'time': '00:21:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.768049',
                      'lng': '-105.018958',
                      'location': '3700 N BRYANT ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '482808',
                      'time': '00:43:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.768055',
                      'lng': '-105.008029',
                      'location': '3700-BLK N QUIVAS ST',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '482962',
                      'time': '05:30:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.768047',
                      'lng': '-105.025187',
                      'location': 'N FEDERAL BLVD / W 37TH AVE',
                      'outcome': 'citation',
                      'precinct': '113',
                      'raw_row_number': '482972',
                      'time': '10:54:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.768353',
                      'lng': '-105.027598',
                      'location': 'N GROVE ST / W CLYDE PL',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '483399',
                      'time': '09:02:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.768055',
                      'lng': '-105.006449',
                      'location': '3700-BLK N PECOS ST',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '483456',
                      'time': '07:05:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.766485',
                      'lng': '-105.034635',
                      'location': 'W 36TH AVE / N LOWELL BLVD',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '486708',
                      'time': '22:08:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.766485',
                      'lng': '-105.034635',
                      'location': '3600-BLK N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '486716',
                      'time': '13:11:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.766677',
                      'lng': '-105.041664',
                      'location': '3600 N RALEIGH ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '487037',
                      'time': '23:08:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.766496',
                      'lng': '-105.029948',
                      'location': '3300 W 36TH AVE',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '487180',
                      'time': '08:17:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.767411',
                      'lng': '-105.032289',
                      'location': '3700-BLK N JULIAN ST',
                      'outcome': 'arrest',
                      'precinct': '113',
                      'raw_row_number': '488661',
                      'time': '00:32:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.767563',
                      'lng': '-105.044013',
                      'location': '3700-BLK N TENNYSON ST',
                      'outcome': 'warning',
                      'precinct': '113',
                      'raw_row_number': '488763',
                      'time': '21:25:35',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.767563',
                      'lng': '-105.044013',
                      'location': 'W 37TH AVE / N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '488769',
                      'time': '20:59:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.767615',
                      'lng': '-105.039324',
                      'location': '3700-BLK N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '488854',
                      'time': '13:01:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.767406',
                      'lng': '-105.03464',
                      'location': 'W 37TH AVE / N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '489065',
                      'time': '10:31:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.767406',
                      'lng': '-105.03464',
                      'location': '3700 N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '113',
                      'raw_row_number': '489071',
                      'time': '12:07:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '121': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.050923',
                      'location': 'W COLFAX AVE / N YATES ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '282879',
                      'time': '00:23:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.050923',
                      'location': 'W COLFAX AVE / N YATES ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '282895',
                      'time': '12:52:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.050923',
                      'location': 'W COLFAX AVE / N YATES ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '282979',
                      'time': '10:37:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740356',
                      'lng': '-105.048336',
                      'location': '4770 W COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '283224',
                      'time': '00:05:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.74035',
                      'lng': '-105.047499',
                      'location': 'W COLFAX AVE / N WINONA CT',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '284539',
                      'time': '01:44:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740357',
                      'lng': '-105.052073',
                      'location': '1500-BLK N ZENOBIA ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '285076',
                      'time': '20:26:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.74035',
                      'lng': '-105.047499',
                      'location': 'W COLFAX AVE / N WINONA CT',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '285198',
                      'time': '00:54:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740335',
                      'lng': '-105.0346',
                      'location': 'N LOWELL BLVD / W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '301414',
                      'time': '14:05:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.74034',
                      'lng': '-105.03582',
                      'location': 'W COLFAX AVE / N MEADE ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '301476',
                      'time': '22:11:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.74033',
                      'lng': '-105.02986',
                      'location': 'W COLFAX AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '301562',
                      'time': '10:25:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '301961',
                      'time': '00:53:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '301973',
                      'time': '13:33:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740324',
                      'lng': '-105.031116',
                      'location': 'W COLFAX AVE / N JULIAN ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '302047',
                      'time': '10:58:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740336',
                      'lng': '-105.032276',
                      'location': 'W COLFAX AVE / N KNOX CT',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '302098',
                      'time': '01:04:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Vehicle Towed',
                      'district': '1',
                      'lat': '39.740339',
                      'lng': '-105.031773',
                      'location': '3417 W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '302175',
                      'time': '13:51:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '302225',
                      'time': '18:40:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': '1500 N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '302294',
                      'time': '03:19:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '302307',
                      'time': '00:25:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.044016',
                      'location': '4400-BLK W COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '302420',
                      'time': '03:10:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': '1500 N PERRY ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '302448',
                      'time': '22:39:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740344',
                      'lng': '-105.036984',
                      'location': 'W COLFAX AVE / N NEWTON ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '302465',
                      'time': '01:35:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.74033',
                      'lng': '-105.02986',
                      'location': 'N IRVING ST / W COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '302689',
                      'time': '04:04:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.74033',
                      'lng': '-105.02986',
                      'location': 'W COLFAX AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '302713',
                      'time': '10:05:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.74033',
                      'lng': '-105.02986',
                      'location': '1500 N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '302716',
                      'time': '12:14:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.74033',
                      'lng': '-105.02986',
                      'location': 'W COLFAX AVE / N IRVING ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '302721',
                      'time': '07:44:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740324',
                      'lng': '-105.031116',
                      'location': 'W COLFAX AVE / N JULIAN ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '303148',
                      'time': '04:19:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.740334',
                      'lng': '-105.033422',
                      'location': 'W COLFAX AVE / N KING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '303627',
                      'time': '02:16:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.740334',
                      'lng': '-105.033422',
                      'location': 'W COLFAX AVE / N KING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '304055',
                      'time': '01:50:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740346',
                      'lng': '-105.042838',
                      'location': 'W COLFAX AVE / N STUART ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '304331',
                      'time': '17:43:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.74033',
                      'lng': '-105.02986',
                      'location': '1500-BLK N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '304822',
                      'time': '23:01:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740355',
                      'lng': '-105.045179',
                      'location': 'W COLFAX AVE / N UTICA ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '305100',
                      'time': '18:33:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740346',
                      'lng': '-105.042838',
                      'location': 'N STUART ST / W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '305188',
                      'time': '00:46:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.74029',
                      'lng': '-105.028278',
                      'location': '3200-BLK W COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '305368',
                      'time': '01:30:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '305571',
                      'time': '01:11:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740344',
                      'lng': '-105.040485',
                      'location': 'W COLFAX AVE / N QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '305959',
                      'time': '17:28:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.74034',
                      'lng': '-105.03582',
                      'location': '1500-BLK N MEADE ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '306414',
                      'time': '14:45:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.046344',
                      'location': 'N VRAIN ST / W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '306914',
                      'time': '14:43:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.046344',
                      'location': '1500-BLK N VRAIN ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '306915',
                      'time': '18:13:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.046344',
                      'location': 'N VRAIN ST / W COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '306919',
                      'time': '20:01:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': '1500-BLK N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '307284',
                      'time': '15:11:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740345',
                      'lng': '-105.041659',
                      'location': '4200 W COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '309517',
                      'time': '00:58:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '309583',
                      'time': '04:05:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.046344',
                      'location': '1500-BLK N VRAIN ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '309869',
                      'time': '12:25:38',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740357',
                      'lng': '-105.052073',
                      'location': '1500-BLK N ZENOBIA ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '309963',
                      'time': '11:14:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740363',
                      'lng': '-105.02522',
                      'location': 'W COLFAX AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '310171',
                      'time': '22:42:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Detox Van',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': '4000-BLK W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '310183',
                      'time': '18:03:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '310185',
                      'time': '14:36:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740339',
                      'lng': '-105.031773',
                      'location': '3417 W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '310374',
                      'time': '12:29:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.74034',
                      'lng': '-105.03582',
                      'location': 'W COLFAX AVE / N MEADE ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '310814',
                      'time': '02:10:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740345',
                      'lng': '-105.041659',
                      'location': '1500 N RALEIGH ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '310976',
                      'time': '23:04:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740358',
                      'lng': '-105.048668',
                      'location': 'N WOLFF ST / W COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '311775',
                      'time': '19:56:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.046344',
                      'location': 'W COLFAX AVE / N VRAIN ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '311874',
                      'time': '22:24:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.046344',
                      'location': 'N VRAIN ST / W COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '312026',
                      'time': '00:34:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740358',
                      'lng': '-105.048668',
                      'location': 'W COLFAX AVE / N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '312322',
                      'time': '22:24:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.050923',
                      'location': 'W COLFAX AVE / N YATES ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '312399',
                      'time': '23:11:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.046344',
                      'location': '1500 N VRAIN ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '312792',
                      'time': '23:48:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.046344',
                      'location': 'W COLFAX AVE / N VRAIN ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '312804',
                      'time': '20:27:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740352',
                      'lng': '-105.046344',
                      'location': 'W COLFAX AVE / N VRAIN ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '312805',
                      'time': '19:29:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.741526',
                      'lng': '-105.034597',
                      'location': 'N LOWELL BLVD / W CONEJOS PL',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '314488',
                      'time': '07:39:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.741526',
                      'lng': '-105.029943',
                      'location': 'N IRVING ST / W CONEJOS PL',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '315867',
                      'time': '14:34:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.741515',
                      'lng': '-105.028371',
                      'location': '3200 W CONEJOS PL',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '317591',
                      'time': '13:40:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.741519',
                      'lng': '-105.031502',
                      'location': '3400-COLF W CONEJOS PL',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '321087',
                      'time': '09:21:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740331',
                      'lng': '-105.014146',
                      'location': 'I25 SB / W COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '321974',
                      'time': '08:02:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740331',
                      'lng': '-105.014146',
                      'location': 'W COLFAX AVE / I25 SB',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '323171',
                      'time': '20:08:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.74152',
                      'lng': '-105.040489',
                      'location': 'N QUITMAN ST / W CONEJOS PL',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '323395',
                      'time': '13:43:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740344',
                      'lng': '-105.036984',
                      'location': 'W COLFAX AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '323626',
                      'time': '20:14:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.74034',
                      'lng': '-105.03582',
                      'location': '3700-BLK W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '323656',
                      'time': '09:23:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740344',
                      'lng': '-105.040485',
                      'location': 'W COLFAX AVE / N QUITMAN ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '323842',
                      'time': '21:23:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740533',
                      'lng': '-105.01812',
                      'location': '1501 MILE HIGH STADIUM CIR',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '326897',
                      'time': '15:14:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740344',
                      'lng': '-105.040485',
                      'location': 'W COLFAX AVE / N QUITMAN ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '328565',
                      'time': '14:59:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '328860',
                      'time': '00:53:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Detox Van',
                      'district': '1',
                      'lat': '39.740363',
                      'lng': '-105.02522',
                      'location': 'W COLFAX AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '328954',
                      'time': '21:35:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740344',
                      'lng': '-105.036984',
                      'location': 'W COLFAX AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '330660',
                      'time': '02:00:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740336',
                      'lng': '-105.032276',
                      'location': 'N KNOX CT / W COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '331080',
                      'time': '22:49:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740344',
                      'lng': '-105.040485',
                      'location': 'W COLFAX AVE / N QUITMAN ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '331753',
                      'time': '16:56:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '332381',
                      'time': '22:38:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.039326',
                      'location': 'W COLFAX AVE / N PERRY ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '332979',
                      'time': '00:40:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.740343',
                      'lng': '-105.044016',
                      'location': 'W COLFAX AVE / N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '333048',
                      'time': '18:46:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.742733',
                      'lng': '-105.028381',
                      'location': 'W 16TH AVE / N HOOKER ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '333646',
                      'time': '00:50:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.742733',
                      'lng': '-105.028381',
                      'location': 'W 16TH AVE / N HOOKER ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '333648',
                      'time': '09:23:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.742746',
                      'lng': '-105.031506',
                      'location': 'N JULIAN ST / W 16TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '333671',
                      'time': '20:14:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.743973',
                      'lng': '-105.044023',
                      'location': 'W 17TH AVE / N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '333923',
                      'time': '17:22:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.743972',
                      'lng': '-105.045158',
                      'location': 'W 17TH AVE / N UTICA ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '334422',
                      'time': '17:44:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.743972',
                      'lng': '-105.045158',
                      'location': 'N UTICA ST / W 17TH AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '334442',
                      'time': '23:35:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.743955',
                      'lng': '-105.039309',
                      'location': 'W 17TH AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '334523',
                      'time': '03:17:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.743972',
                      'lng': '-105.045158',
                      'location': 'W 17TH AVE / N UTICA ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '334853',
                      'time': '23:13:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.743972',
                      'lng': '-105.045158',
                      'location': 'W 17TH AVE / N UTICA ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '335006',
                      'time': '20:02:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.743953',
                      'lng': '-105.029957',
                      'location': 'W 17TH AVE / N IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '335099',
                      'time': '13:42:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.743953',
                      'lng': '-105.029957',
                      'location': '1700-BLK N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '335683',
                      'time': '13:37:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.743956',
                      'lng': '-105.025218',
                      'location': '1700 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '336069',
                      'time': '23:35:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.743981',
                      'lng': '-105.047516',
                      'location': 'W 17TH AVE / N WINONA CT',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '336480',
                      'time': '19:39:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.743958',
                      'lng': '-105.038157',
                      'location': '3900 W 17TH AVE',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '336485',
                      'time': '23:44:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.743956',
                      'lng': '-105.025218',
                      'location': '3000-BLK W 17TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '336565',
                      'time': '02:18:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.743951',
                      'lng': '-105.036986',
                      'location': 'W 17TH AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '337594',
                      'time': '19:03:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.743951',
                      'lng': '-105.036986',
                      'location': 'W 17TH AVE / N NEWTON ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '337608',
                      'time': '02:27:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.742177',
                      'lng': '-105.048677',
                      'location': 'W 16TH AVE / N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '338869',
                      'time': '17:32:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.742177',
                      'lng': '-105.048677',
                      'location': '1600-BLK N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '338885',
                      'time': '00:19:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.742731',
                      'lng': '-105.025219',
                      'location': 'W 16TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '339974',
                      'time': '10:47:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.743953',
                      'lng': '-105.029957',
                      'location': 'W 17TH AVE / N IRVING ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '340543',
                      'time': '09:11:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '1',
                      'lat': '39.743955',
                      'lng': '-105.039309',
                      'location': 'W 17TH AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '341111',
                      'time': '00:05:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.743955',
                      'lng': '-105.039309',
                      'location': 'W 17TH AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '341731',
                      'time': '15:11:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.743971',
                      'lng': '-105.052088',
                      'location': 'W 17TH AVE / N ZENOBIA ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '342216',
                      'time': '11:05:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.743946',
                      'lng': '-105.028385',
                      'location': '1700 N HOOKER ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '342939',
                      'time': '14:29:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.742669',
                      'lng': '-105.040411',
                      'location': 'W 16TH AVE / N QUITMAN ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '343221',
                      'time': '19:17:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.742731',
                      'lng': '-105.025219',
                      'location': 'W 16TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '343375',
                      'time': '01:43:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.742731',
                      'lng': '-105.025219',
                      'location': '1600 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '343376',
                      'time': '01:38:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.742178',
                      'lng': '-105.047506',
                      'location': '1600-BLK N WINONA CT',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '343433',
                      'time': '00:39:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.742739',
                      'lng': '-105.029946',
                      'location': 'W 16TH AVE / N IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '344646',
                      'time': '19:33:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.742368',
                      'lng': '-105.042841',
                      'location': '1600 N STUART ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '345308',
                      'time': '01:16:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.742731',
                      'lng': '-105.025219',
                      'location': '1600-BLK N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '345360',
                      'time': '19:21:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.742739',
                      'lng': '-105.029946',
                      'location': '1600 N IRVING ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '348791',
                      'time': '12:31:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.742739',
                      'lng': '-105.029946',
                      'location': '1600-BLK N IRVING ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '348797',
                      'time': '17:46:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.742739',
                      'lng': '-105.029946',
                      'location': '1600 N IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '348888',
                      'time': '02:56:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.742731',
                      'lng': '-105.025219',
                      'location': 'W 16TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '352087',
                      'time': '00:37:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.742731',
                      'lng': '-105.025219',
                      'location': 'W 16TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '353919',
                      'time': '10:49:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.743936',
                      'lng': '-105.031498',
                      'location': '1700-BLK N JULIAN ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '354292',
                      'time': '19:17:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.743936',
                      'lng': '-105.031498',
                      'location': 'W 17TH AVE / N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '354301',
                      'time': '10:17:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.743946',
                      'lng': '-105.033069',
                      'location': 'W 17TH AVE / N KING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '354382',
                      'time': '10:26:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.743952',
                      'lng': '-105.035766',
                      'location': 'W 17TH AVE / N MEADE ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '354561',
                      'time': '17:50:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.743946',
                      'lng': '-105.033069',
                      'location': 'W 17TH AVE / N KING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '354689',
                      'time': '11:52:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.743959',
                      'lng': '-105.033069',
                      'location': '1702 N KING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '354691',
                      'time': '10:27:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.743956',
                      'lng': '-105.025218',
                      'location': 'W 17TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '354930',
                      'time': '01:42:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.743956',
                      'lng': '-105.025218',
                      'location': '1700-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '355301',
                      'time': '11:39:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.743972',
                      'lng': '-105.045158',
                      'location': 'W 17TH AVE / N UTICA ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '359109',
                      'time': '16:11:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.743972',
                      'lng': '-105.045158',
                      'location': 'W 17TH AVE / N UTICA ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '359118',
                      'time': '02:43:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.743968',
                      'lng': '-105.042837',
                      'location': 'W 17TH AVE / N STUART ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '359239',
                      'time': '23:32:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.743968',
                      'lng': '-105.042837',
                      'location': 'W 17TH AVE / N STUART ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '359241',
                      'time': '23:58:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.746372',
                      'lng': '-105.02838',
                      'location': '3200-BLK W 19TH AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '359387',
                      'time': '18:13:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.747578',
                      'lng': '-105.025229',
                      'location': 'N FEDERAL BLVD / W 20TH AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '359733',
                      'time': '00:45:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.746379',
                      'lng': '-105.035771',
                      'location': '3700 W 19TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '360263',
                      'time': '13:23:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.746379',
                      'lng': '-105.035771',
                      'location': '3700-BLK W 19TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '360272',
                      'time': '13:35:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.746364',
                      'lng': '-105.025214',
                      'location': '3000 W 19TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '360893',
                      'time': '12:48:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.746385',
                      'lng': '-105.018982',
                      'location': 'W 19TH AVE / MILE HIGH STADIUM CIR',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '362099',
                      'time': '11:41:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.746364',
                      'lng': '-105.025214',
                      'location': 'W 19TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '364952',
                      'time': '02:37:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.747398',
                      'lng': '-105.023384',
                      'location': 'W 20TH AVE / MILE HIGH STADIUM CIR',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '365584',
                      'time': '09:53:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.746911',
                      'lng': '-105.019775',
                      'location': '1975 N BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '365812',
                      'time': '18:51:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.747352',
                      'lng': '-105.034595',
                      'location': '1980 N LOWELL BLVD',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '366764',
                      'time': '14:00:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.746397',
                      'lng': '-105.034582',
                      'location': '1900-BLK N LOWELL BLVD',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '366800',
                      'time': '23:13:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.746364',
                      'lng': '-105.025214',
                      'location': '1900-BLK N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '368385',
                      'time': '22:37:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.747578',
                      'lng': '-105.025229',
                      'location': '3000-BLK W 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '369027',
                      'time': '23:36:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.747578',
                      'lng': '-105.025229',
                      'location': 'N FEDERAL BLVD / W 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '369321',
                      'time': '13:49:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.745166',
                      'lng': '-105.029949',
                      'location': '1800 N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '375701',
                      'time': '13:42:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.745166',
                      'lng': '-105.029949',
                      'location': 'W 18TH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '375702',
                      'time': '09:35:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.745166',
                      'lng': '-105.029949',
                      'location': 'W 18TH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '376148',
                      'time': '12:25:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.745166',
                      'lng': '-105.029949',
                      'location': 'W 18TH AVE / N IRVING ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '376167',
                      'time': '12:00:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.745158000000004',
                      'lng': '-105.026818',
                      'location': '3100 W 18TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '376226',
                      'time': '06:15:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.745158000000004',
                      'lng': '-105.026818',
                      'location': 'W 18TH AVE / N GROVE ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '376227',
                      'time': '17:40:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.745161',
                      'lng': '-105.02521',
                      'location': '3000 W 18TH AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '376264',
                      'time': '00:06:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.74997',
                      'lng': '-105.042826',
                      'location': 'W 22ND AVE / N STUART ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '378044',
                      'time': '23:47:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.749999',
                      'lng': '-105.025151',
                      'location': 'W 22ND AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '378065',
                      'time': '07:32:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.750006',
                      'lng': '-105.023612',
                      'location': '2900-BLK W 22ND AVE',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '378401',
                      'time': '21:00:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.748785',
                      'lng': '-105.028383',
                      'location': '3200 W 21ST AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '379948',
                      'time': '12:09:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.748753',
                      'lng': '-105.042834',
                      'location': 'W 21ST AVE / N STUART ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '382025',
                      'time': '23:11:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.748774',
                      'lng': '-105.036963',
                      'location': 'W 21ST AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '382160',
                      'time': '23:15:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.748775',
                      'lng': '-105.035791',
                      'location': 'W 21ST AVE / N MEADE ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '382170',
                      'time': '23:10:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.748786',
                      'lng': '-105.025153',
                      'location': 'W 21ST AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '383313',
                      'time': '23:39:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.750006',
                      'lng': '-105.023612',
                      'location': '2200 N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '384201',
                      'time': '20:43:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Vehicle Towed',
                      'district': '1',
                      'lat': '39.750006',
                      'lng': '-105.023612',
                      'location': 'W 22ND AVE / N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '384206',
                      'time': '12:32:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.748786',
                      'lng': '-105.025153',
                      'location': '2100-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '385117',
                      'time': '23:47:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.748793',
                      'lng': '-105.023614',
                      'location': '2900-BLK W 21ST AVE',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '386688',
                      'time': '11:18:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.748786',
                      'lng': '-105.025153',
                      'location': '2100 N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '387901',
                      'time': '00:31:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.751288',
                      'lng': '-105.016793',
                      'location': 'I25 SB / W 23RD AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '388410',
                      'time': '14:41:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.751216',
                      'lng': '-105.02839',
                      'location': 'W 23RD AVE / N HOOKER ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '389234',
                      'time': '05:19:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.75121',
                      'lng': '-105.023627',
                      'location': '2900-BLK W 23RD AVE',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '389868',
                      'time': '19:26:11',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.751207',
                      'lng': '-105.025229',
                      'location': '3000 W 23RD AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '392948',
                      'time': '23:48:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'No Police Needed',
                      'district': '1',
                      'lat': '39.752416',
                      'lng': '-105.025296',
                      'location': '3000 W 24TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '395106',
                      'time': '11:15:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.752412',
                      'lng': '-105.025147',
                      'location': 'W 24TH AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '395968',
                      'time': '04:29:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.753037',
                      'lng': '-105.050994',
                      'location': 'W BYRON PL / N YATES ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '396476',
                      'time': '00:37:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.75121',
                      'lng': '-105.023627',
                      'location': 'W 23RD AVE / N ELIOT ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '397145',
                      'time': '17:24:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.75121',
                      'lng': '-105.023627',
                      'location': '2900 W 23RD AVE',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '397147',
                      'time': '22:36:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.752416',
                      'lng': '-105.025296',
                      'location': '3000 W 24TH AVE',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '397526',
                      'time': '11:16:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.75121',
                      'lng': '-105.023627',
                      'location': '2300 N ELIOT ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '397756',
                      'time': '03:14:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.752412',
                      'lng': '-105.025147',
                      'location': 'W 24TH AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '398111',
                      'time': '07:15:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.749999',
                      'lng': '-105.025151',
                      'location': 'W 22ND AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '399218',
                      'time': '11:05:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '1',
                      'lat': '39.751207',
                      'lng': '-105.020526',
                      'location': 'W 23RD AVE / N CLAY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '400217',
                      'time': '14:17:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.751288',
                      'lng': '-105.016793',
                      'location': 'I25 SB / W 23RD AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '400352',
                      'time': '15:44:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.751288',
                      'lng': '-105.016793',
                      'location': 'I25 SB / W 23RD AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '400588',
                      'time': '00:48:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.754833',
                      'lng': '-105.032265',
                      'location': '2600-BLK N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '401104',
                      'time': '13:11:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.754828',
                      'lng': '-105.020753',
                      'location': '2714 W 26TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '402113',
                      'time': '02:36:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.754866',
                      'lng': '-105.036971',
                      'location': 'W 26TH AVE / N NEWTON ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '403436',
                      'time': '22:47:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.756015',
                      'lng': '-105.025152',
                      'location': 'W 27TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '403675',
                      'time': '21:03:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.754821',
                      'lng': '-105.017796',
                      'location': 'W 26TH AVE / N ALCOTT ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '404653',
                      'time': '01:15:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.754856',
                      'lng': '-105.035805',
                      'location': '2600-BLK N MEADE ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '405180',
                      'time': '18:41:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.754823',
                      'lng': '-105.02839',
                      'location': 'W 26TH AVE / N HOOKER ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '406549',
                      'time': '14:13:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.754838',
                      'lng': '-105.025223',
                      'location': '2600 N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '406909',
                      'time': '23:06:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.754869',
                      'lng': '-105.015906',
                      'location': '2601 N ZUNI ST',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '407263',
                      'time': '00:40:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.754826',
                      'lng': '-105.023614',
                      'location': '2900-BLK W 26TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '407457',
                      'time': '08:07:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.754826',
                      'lng': '-105.023614',
                      'location': '2900 W 26TH AVE',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '407458',
                      'time': '10:27:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.754826',
                      'lng': '-105.023614',
                      'location': 'W 26TH AVE / N ELIOT ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '407461',
                      'time': '11:09:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.754826',
                      'lng': '-105.023614',
                      'location': 'W 26TH AVE / N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '407484',
                      'time': '12:36:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.754829',
                      'lng': '-105.029944',
                      'location': 'W 26TH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '407760',
                      'time': '07:28:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.754829',
                      'lng': '-105.022079',
                      'location': 'W 26TH AVE / N DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '407844',
                      'time': '21:30:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.754869',
                      'lng': '-105.015906',
                      'location': '2601 N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '408750',
                      'time': '14:50:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.754838',
                      'lng': '-105.025223',
                      'location': 'W 26TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '409315',
                      'time': '22:26:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.754838',
                      'lng': '-105.025223',
                      'location': 'W 26TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '409329',
                      'time': '23:46:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.754821',
                      'lng': '-105.017796',
                      'location': 'W 26TH AVE / N ALCOTT ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '410010',
                      'time': '23:30:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.753624',
                      'lng': '-105.025147',
                      'location': '2500 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '411425',
                      'time': '11:07:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.753609',
                      'lng': '-105.023617',
                      'location': '2900 W 25TH AVE',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '411717',
                      'time': '23:38:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.753927',
                      'lng': '-105.041666',
                      'location': '2500 N RALEIGH ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '412376',
                      'time': '16:17:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.753934',
                      'lng': '-105.040485',
                      'location': 'W 25TH AVE / N QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '412394',
                      'time': '05:48:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.753624',
                      'lng': '-105.025147',
                      'location': 'W 25TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '412561',
                      'time': '00:06:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.754838',
                      'lng': '-105.025223',
                      'location': '2600-BLK N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '412620',
                      'time': '12:17:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.754838',
                      'lng': '-105.025223',
                      'location': 'W 26TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '412621',
                      'time': '12:20:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.754838',
                      'lng': '-105.025223',
                      'location': 'W 26TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '412700',
                      'time': '00:58:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.754832',
                      'lng': '-105.019158',
                      'location': 'W 26TH AVE / N BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '413238',
                      'time': '21:20:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.754869',
                      'lng': '-105.015906',
                      'location': '2601 N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '413316',
                      'time': '13:10:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.753624',
                      'lng': '-105.025277',
                      'location': '3000-BLK W 25TH AVE',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '414789',
                      'time': '14:29:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.753624',
                      'lng': '-105.025277',
                      'location': '3000 W 25TH AVE',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '416088',
                      'time': '16:42:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.753624',
                      'lng': '-105.025147',
                      'location': 'W 25TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '417191',
                      'time': '02:41:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.753615',
                      'lng': '-105.020522',
                      'location': 'W 25TH AVE / N CLAY ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '417552',
                      'time': '04:10:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.753022',
                      'lng': '-105.04049',
                      'location': 'W BYRON PL / N QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '418454',
                      'time': '12:29:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.753609',
                      'lng': '-105.023617',
                      'location': '2900 W 25TH AVE',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '419630',
                      'time': '10:05:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.75304',
                      'lng': '-105.048757',
                      'location': 'W BYRON PL / N WOLFF ST',
                      'outcome': 'citation',
                      'precinct': '121',
                      'raw_row_number': '419686',
                      'time': '03:47:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.756018',
                      'lng': '-105.019198',
                      'location': 'W 27TH AVE / N BRYANT ST',
                      'outcome': 'arrest',
                      'precinct': '121',
                      'raw_row_number': '422632',
                      'time': '23:36:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.756262',
                      'lng': '-105.023608',
                      'location': '2719 N ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '422794',
                      'time': '09:25:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.75726',
                      'lng': '-105.028757',
                      'location': 'W 28TH AVE / N HOOKER ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '425350',
                      'time': '16:32:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.757252',
                      'lng': '-105.025275',
                      'location': '3000-BLK W 28TH AVE',
                      'outcome': 'warning',
                      'precinct': '121',
                      'raw_row_number': '430452',
                      'time': '16:24:21',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.756019',
                      'lng': '-105.026469',
                      'location': 'W 27TH AVE / N GROVE ST',
                      'outcome': 'NA',
                      'precinct': '121',
                      'raw_row_number': '433503',
                      'time': '11:54:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'}],
             '122': [{'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.725731',
                      'lng': '-105.018676',
                      'location': '600-BLK N BRYANT ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '199276',
                      'time': '10:34:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.729318',
                      'lng': '-105.027507',
                      'location': '800 N HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '200032',
                      'time': '00:57:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.729318',
                      'lng': '-105.027507',
                      'location': 'W 8TH AVE / N HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '200539',
                      'time': '19:17:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.727511',
                      'lng': '-105.025135',
                      'location': '700-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '200670',
                      'time': '17:39:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'No Police Needed',
                      'district': '1',
                      'lat': '39.727078',
                      'lng': '-105.031274',
                      'location': '660 N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '200689',
                      'time': '14:50:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.726413',
                      'lng': '-105.047558',
                      'location': '600-BLK N WINONA CT',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '200865',
                      'time': '03:14:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.727707',
                      'lng': '-105.048513',
                      'location': '645 N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '201698',
                      'time': '18:06:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.728266',
                      'lng': '-105.042723',
                      'location': 'N STUART ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '201722',
                      'time': '17:55:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.728274',
                      'lng': '-105.043866',
                      'location': '700 N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '201733',
                      'time': '13:14:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.72594',
                      'lng': '-105.025146',
                      'location': '600-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '202498',
                      'time': '22:05:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.72594',
                      'lng': '-105.025146',
                      'location': '600-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '202502',
                      'time': '17:51:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.729323',
                      'lng': '-105.025155',
                      'location': 'W 6TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '202726',
                      'time': '02:09:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.726796',
                      'lng': '-105.028838',
                      'location': '600-BLK N HOOKER ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '203050',
                      'time': '19:40:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.728254',
                      'lng': '-105.040545',
                      'location': 'W 7TH AVE / N QUITMAN ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '203372',
                      'time': '01:23:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.728385',
                      'lng': '-105.025138',
                      'location': 'N FEDERAL BLVD / W SEVERN PL',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '203977',
                      'time': '12:34:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.726001',
                      'lng': '-105.048503',
                      'location': '600 N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '204618',
                      'time': '01:19:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.725761',
                      'lng': '-105.035118',
                      'location': 'W 6TH AVE / N LOWELL BLVD',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '205271',
                      'time': '22:38:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.725792',
                      'lng': '-105.042709',
                      'location': '600 N STUART ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '206785',
                      'time': '23:14:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.728245',
                      'lng': '-105.038387',
                      'location': 'W 7TH AVE / N OSCEOLA ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '206908',
                      'time': '02:27:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.726001',
                      'lng': '-105.048503',
                      'location': '600 N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '207018',
                      'time': '09:49:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.725186',
                      'lng': '-105.018669',
                      'location': 'W 6TH AVE / N BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '207476',
                      'time': '23:37:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.725731',
                      'lng': '-105.018676',
                      'location': 'W 6TH AVE / N BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '208933',
                      'time': '03:49:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.725787',
                      'lng': '-105.038372',
                      'location': '600 N OSCEOLA ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '214298',
                      'time': '03:36:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Vehicle Towed',
                      'district': '1',
                      'lat': '39.729455',
                      'lng': '-105.045766',
                      'location': '4555 W 8TH AVE',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '219972',
                      'time': '09:50:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.731134',
                      'lng': '-105.032127',
                      'location': '900-Blk N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '220202',
                      'time': '20:38:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.732942',
                      'lng': '-105.032143',
                      'location': 'N KNOX CT / W 10TH AVE',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '220838',
                      'time': '19:06:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.733112',
                      'lng': '-105.053227',
                      'location': 'W 10TH AVE / N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '221143',
                      'time': '18:44:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.729324',
                      'lng': '-105.015889',
                      'location': '800 N ZUNI ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '221356',
                      'time': '00:09:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.733112',
                      'lng': '-105.053227',
                      'location': 'W 10TH AVE / N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '221656',
                      'time': '11:50:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.732942',
                      'lng': '-105.032143',
                      'location': 'W 10TH AVE / N KNOX CT',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '221961',
                      'time': '01:47:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.732989',
                      'lng': '-105.025163',
                      'location': '1000-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '222085',
                      'time': '20:35:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.732989',
                      'lng': '-105.025163',
                      'location': '3000 W 10TH AVE',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '222644',
                      'time': '00:08:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.733104',
                      'lng': '-105.052202',
                      'location': 'W 10TH AVE / N ZENOBIA ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '222714',
                      'time': '13:57:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.733104',
                      'lng': '-105.052202',
                      'location': 'W 10TH AVE / N ZENOBIA ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '222720',
                      'time': '18:08:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.732953',
                      'lng': '-105.034484',
                      'location': 'N LINLEY CT / W 10TH AVE',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '222920',
                      'time': '18:21:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.731203',
                      'lng': '-105.021733',
                      'location': '900 N DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '223101',
                      'time': '08:14:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.732941',
                      'lng': '-105.026368',
                      'location': 'W 10TH AVE / N GROVE ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '223132',
                      'time': '17:47:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.733016',
                      'lng': '-105.041657',
                      'location': 'W 10TH AVE / N RALEIGH ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '223152',
                      'time': '21:27:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.732995',
                      'lng': '-105.039384',
                      'location': 'W 10TH AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '223506',
                      'time': '19:24:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.732995',
                      'lng': '-105.039384',
                      'location': '1000 N PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '223515',
                      'time': '02:43:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.732995',
                      'lng': '-105.039384',
                      'location': 'W 10TH AVE / N PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '224540',
                      'time': '10:57:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.732989',
                      'lng': '-105.025163',
                      'location': 'W 10TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '224638',
                      'time': '22:32:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.732989',
                      'lng': '-105.025163',
                      'location': 'W 10TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '224719',
                      'time': '21:30:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.732989',
                      'lng': '-105.025163',
                      'location': 'W 10TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '224797',
                      'time': '11:57:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.729318',
                      'lng': '-105.017453',
                      'location': '2500-Blk W 8TH AVE',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '224941',
                      'time': '23:59:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Detox Van',
                      'district': '1',
                      'lat': '39.731134',
                      'lng': '-105.032127',
                      'location': '900-BLK N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '225269',
                      'time': '22:27:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729445',
                      'lng': '-105.047506',
                      'location': 'W 8TH AVE / N WINONA CT',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '225572',
                      'time': '00:14:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.729324',
                      'lng': '-105.015889',
                      'location': 'W 8TH AVE / N ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '225863',
                      'time': '21:01:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729324',
                      'lng': '-105.015889',
                      'location': 'W 8TH AVE / N ZUNI ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '225864',
                      'time': '21:07:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.731195',
                      'lng': '-105.025156',
                      'location': '900-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '226257',
                      'time': '20:14:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.729316',
                      'lng': '-105.021714',
                      'location': '2800 W 8TH AVE',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '226427',
                      'time': '22:33:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.729316',
                      'lng': '-105.021714',
                      'location': '800-BLK N DECATUR ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '226428',
                      'time': '20:26:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729322',
                      'lng': '-105.024489',
                      'location': '3000 W 8TH AVE',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '226997',
                      'time': '00:27:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.729316',
                      'lng': '-105.021714',
                      'location': '2800-BLK W 8TH AVE',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '227050',
                      'time': '05:33:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.729323',
                      'lng': '-105.025155',
                      'location': 'W 8TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '228196',
                      'time': '01:08:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729316',
                      'lng': '-105.021714',
                      'location': '2800-BLK W 8TH AVE',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '228575',
                      'time': '02:44:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.730623',
                      'lng': '-105.039472',
                      'location': 'W 9TH AVE / N PERRY ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '228780',
                      'time': '23:49:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made,T - Citation Issue',
                      'district': '1',
                      'lat': '39.732995',
                      'lng': '-105.039384',
                      'location': '1000-BLK N PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '229357',
                      'time': '18:54:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.731259',
                      'lng': '-105.04868',
                      'location': 'W 9TH AVE / N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '229546',
                      'time': '12:29:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.729316',
                      'lng': '-105.021714',
                      'location': '2800 W 8TH AVE',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '229768',
                      'time': '01:16:27',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.733031',
                      'lng': '-105.042734',
                      'location': '1000-BLK-RALEIGH N STUART ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '229956',
                      'time': '23:36:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.726125',
                      'lng': '-105.032493',
                      'location': 'W 6TH AVE / N KNOX CT',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '230077',
                      'time': '00:03:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.729318',
                      'lng': '-105.017453',
                      'location': '2500-BLK W 8TH AVE',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '230939',
                      'time': '22:56:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.731706',
                      'lng': '-105.019291',
                      'location': 'N CLAY WAY / N BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '231082',
                      'time': '19:55:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.730623',
                      'lng': '-105.039472',
                      'location': 'W 9TH AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '231543',
                      'time': '11:32:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.731404',
                      'lng': '-105.040563',
                      'location': '900 N QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '232035',
                      'time': '23:57:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.731137',
                      'lng': '-105.030981',
                      'location': '900-BLK N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '232172',
                      'time': '03:38:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.731291',
                      'lng': '-105.0521',
                      'location': 'W 9TH AVE / N ZENOBIA ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '232193',
                      'time': '22:25:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.730615',
                      'lng': '-105.03839',
                      'location': '900-BLK N OSCEOLA ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '232333',
                      'time': '16:50:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.731383',
                      'lng': '-105.042725',
                      'location': '900-BLK N STUART ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '232524',
                      'time': '23:48:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729318',
                      'lng': '-105.017453',
                      'location': '2500 W 8TH AVE',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '232725',
                      'time': '23:23:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729318',
                      'lng': '-105.017453',
                      'location': '2500-BLK W 8TH AVE',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '232732',
                      'time': '23:11:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.730615',
                      'lng': '-105.03839',
                      'location': '900-BLK N OSCEOLA ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '233024',
                      'time': '17:54:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.729323',
                      'lng': '-105.025155',
                      'location': 'W 8TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '233749',
                      'time': '23:20:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.730623',
                      'lng': '-105.039472',
                      'location': 'W 9TH AVE / N PERRY ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '233864',
                      'time': '22:22:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.729323',
                      'lng': '-105.025155',
                      'location': 'W 8TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '234508',
                      'time': '10:40:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Vehicle Towed',
                      'district': '1',
                      'lat': '39.731706',
                      'lng': '-105.019291',
                      'location': '900-BLK N CLAY WAY',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '234677',
                      'time': '20:09:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.728257',
                      'lng': '-105.039469',
                      'location': 'W 7TH AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '235202',
                      'time': '17:04:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.729323',
                      'lng': '-105.025155',
                      'location': 'W 8TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '236018',
                      'time': '10:53:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.726131',
                      'lng': '-105.033722',
                      'location': 'W 6TH AVE / N KING ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '236094',
                      'time': '00:37:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729324',
                      'lng': '-105.015889',
                      'location': '800-BLK N ZUNI ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '237024',
                      'time': '06:15:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.729208',
                      'lng': '-105.053246',
                      'location': '782 N SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '237143',
                      'time': '16:14:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.729323',
                      'lng': '-105.025155',
                      'location': 'W 8TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '238759',
                      'time': '03:34:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.728872',
                      'lng': '-105.019862',
                      'location': '775 N CANOSA CT',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '238899',
                      'time': '15:21:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.72594',
                      'lng': '-105.025146',
                      'location': '600-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '239056',
                      'time': '07:53:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.726116',
                      'lng': '-105.031277',
                      'location': '600-BLK N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '239698',
                      'time': '01:08:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.729323',
                      'lng': '-105.025155',
                      'location': 'W 6TH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '239976',
                      'time': '12:31:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.730599',
                      'lng': '-105.036218',
                      'location': 'W 9TH AVE / N MEADE ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '240204',
                      'time': '10:54:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.729323',
                      'lng': '-105.025155',
                      'location': 'W 8TH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '240259',
                      'time': '22:38:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.729323',
                      'lng': '-105.025155',
                      'location': 'W 6TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '240281',
                      'time': '02:59:57',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.736573',
                      'lng': '-105.03223',
                      'location': 'W 13TH AVE / N KNOX CT',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '240334',
                      'time': '03:54:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.735084',
                      'lng': '-105.025173',
                      'location': '1200 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '240373',
                      'time': '00:11:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.736573',
                      'lng': '-105.03223',
                      'location': '1300 N KNOX CT',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '240631',
                      'time': '10:46:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.73848',
                      'lng': '-105.040478',
                      'location': '1400 N QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '241364',
                      'time': '23:37:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.736648',
                      'lng': '-105.049827',
                      'location': 'W 13TH AVE / N XAVIER ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '241797',
                      'time': '20:38:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.738482',
                      'lng': '-105.044003',
                      'location': '1400 N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '241864',
                      'time': '00:11:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.738168',
                      'lng': '-105.021782',
                      'location': 'W HOWARD PL / N DECATUR ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '242140',
                      'time': '15:10:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.738168',
                      'lng': '-105.021782',
                      'location': '2800 W HOWARD PL',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '242141',
                      'time': '03:33:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.738488',
                      'lng': '-105.031126',
                      'location': 'W 14TH AVE / N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '242556',
                      'time': '18:13:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738482',
                      'lng': '-105.048676',
                      'location': 'W 14TH AVE / N WOLFF ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '242748',
                      'time': '19:08:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.738482',
                      'lng': '-105.048676',
                      'location': 'W 14TH AVE / N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '242749',
                      'time': '18:08:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.738497',
                      'lng': '-105.049815',
                      'location': 'W 14TH AVE / N XAVIER ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '242915',
                      'time': '22:35:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.738474',
                      'lng': '-105.033425',
                      'location': '1400-BLK N KING ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '243072',
                      'time': '01:09:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.738474',
                      'lng': '-105.033425',
                      'location': '1400-BLK-LOWELL N KING ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '243073',
                      'time': '20:43:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.738482',
                      'lng': '-105.048676',
                      'location': 'W 14TH AVE / N WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '243265',
                      'time': '00:35:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.738148',
                      'lng': '-105.026555',
                      'location': '3100 W 14TH AVE',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '243806',
                      'time': '00:52:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.738473',
                      'lng': '-105.036982',
                      'location': 'W 14TH AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '244115',
                      'time': '13:16:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.738482',
                      'lng': '-105.034621',
                      'location': '1400-BLK N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '244476',
                      'time': '17:05:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738473',
                      'lng': '-105.036982',
                      'location': '1400-BLK N NEWTON ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '244622',
                      'time': '22:03:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.738478',
                      'lng': '-105.042831',
                      'location': 'W 14TH AVE / N STUART ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '245000',
                      'time': '10:07:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.738482',
                      'lng': '-105.034621',
                      'location': '1400-BLK N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '245137',
                      'time': '19:32:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738488',
                      'lng': '-105.031126',
                      'location': '1400-BLK N JULIAN ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '245164',
                      'time': '18:25:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.736639',
                      'lng': '-105.042824',
                      'location': 'W 13TH AVE / N STUART ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '245459',
                      'time': '09:44:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.735661',
                      'lng': '-105.02176300000001',
                      'location': 'W HOLDEN PL / N DECATUR ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '245655',
                      'time': '00:00:22',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.736573',
                      'lng': '-105.03223',
                      'location': 'W 13TH AVE / N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '245740',
                      'time': '18:04:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.736725',
                      'lng': '-105.050951',
                      'location': 'W 13TH AVE / N YATES ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '246949',
                      'time': '21:54:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.736573',
                      'lng': '-105.03223',
                      'location': '1300-BLK N KNOX CT',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '247517',
                      'time': '17:25:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.738148',
                      'lng': '-105.026555',
                      'location': 'W 14TH AVE / N GROVE ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '247899',
                      'time': '15:25:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.738487',
                      'lng': '-105.050948',
                      'location': '1400 N YATES ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '247906',
                      'time': '22:37:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.736655',
                      'lng': '-105.043996',
                      'location': 'W 13TH AVE / N TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '248153',
                      'time': '21:53:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.736506',
                      'lng': '-105.032208',
                      'location': '1295 N KNOX CT',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '248406',
                      'time': '10:31:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.736594',
                      'lng': '-105.03698',
                      'location': 'W 13TH AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '248443',
                      'time': '22:55:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.734445',
                      'lng': '-105.021753',
                      'location': 'W 12TH AVE / N DECATUR ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '248675',
                      'time': '00:14:16',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.736594',
                      'lng': '-105.03698',
                      'location': '1300-BLK N NEWTON ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '249060',
                      'time': '21:34:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.736655',
                      'lng': '-105.043996',
                      'location': 'W 13TH AVE / N TENNYSON ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '249365',
                      'time': '19:08:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.736573',
                      'lng': '-105.03223',
                      'location': 'W 13TH AVE / N KNOX CT',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '249627',
                      'time': '11:06:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.734758',
                      'lng': '-105.025164',
                      'location': 'W 12TH AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '249932',
                      'time': '00:19:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.734758',
                      'lng': '-105.025164',
                      'location': '3000 W 12TH AVE',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '249937',
                      'time': '23:14:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.736655',
                      'lng': '-105.043996',
                      'location': 'W 13TH AVE / N TENNYSON ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '249978',
                      'time': '22:14:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.732734',
                      'lng': '-105.04389',
                      'location': '980 N TENNYSON ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '250570',
                      'time': '07:50:03',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.732636',
                      'lng': '-105.018245',
                      'location': '1000-BLK N ALCOTT WAY',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '250573',
                      'time': '17:02:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.736614',
                      'lng': '-105.039309',
                      'location': '1300-BLK N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '251258',
                      'time': '20:05:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.734759',
                      'lng': '-105.029849',
                      'location': 'W 12TH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '252061',
                      'time': '17:47:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.7367',
                      'lng': '-105.025174',
                      'location': '1300 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '253314',
                      'time': '16:34:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.735686',
                      'lng': '-105.025191',
                      'location': 'W HOLDEN PL / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '254071',
                      'time': '00:29:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.735583',
                      'lng': '-105.050962',
                      'location': '1200 N YATES ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '254127',
                      'time': '00:55:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.735686',
                      'lng': '-105.025191',
                      'location': 'N FEDERAL BLVD / W HOLDEN PL',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '254144',
                      'time': '19:54:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.734303',
                      'lng': '-105.021752',
                      'location': '1155 N DECATUR ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '254336',
                      'time': '18:57:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.736756',
                      'lng': '-105.027708',
                      'location': '3133 W AVONDALE DR',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '254590',
                      'time': '12:50:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.735686',
                      'lng': '-105.025191',
                      'location': 'N FEDERAL BLVD / W HOLDEN PL',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '254724',
                      'time': '23:57:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': '1 - Alarm RP On Scene',
                      'district': '1',
                      'lat': '39.736579',
                      'lng': '-105.035803',
                      'location': 'W 13TH AVE / N MEADE ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '254756',
                      'time': '01:28:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.736579',
                      'lng': '-105.035803',
                      'location': 'W 13TH AVE / N MEADE ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '254760',
                      'time': '00:09:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.736571',
                      'lng': '-105.033421',
                      'location': 'N KING ST / W 13TH AVE',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '254916',
                      'time': '18:56:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.736614',
                      'lng': '-105.039309',
                      'location': 'W 13TH AVE / N PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '255266',
                      'time': '21:14:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.734809',
                      'lng': '-105.039292',
                      'location': 'W 12TH AVE / N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '255363',
                      'time': '14:17:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.736571',
                      'lng': '-105.033421',
                      'location': '1300-BLK N KING ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '255410',
                      'time': '19:45:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.732989',
                      'lng': '-105.023471',
                      'location': '2900 W 10TH AVE',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '256178',
                      'time': '00:12:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.732989',
                      'lng': '-105.025163',
                      'location': 'N FEDERAL BLVD / W 10TH AVE',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '256726',
                      'time': '11:54:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.733016',
                      'lng': '-105.041657',
                      'location': 'W 10TH AVE / N RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '257227',
                      'time': '11:17:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.733879',
                      'lng': '-105.018514',
                      'location': 'W 11TH AVE / N ALCOTT WAY',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '257269',
                      'time': '00:34:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.733939',
                      'lng': '-105.045009',
                      'location': '4500-BLK W 11TH AVE',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '257523',
                      'time': '08:32:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.733878',
                      'lng': '-105.021748',
                      'location': 'W 11TH AVE / N DECATUR ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '257549',
                      'time': '19:14:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.733044',
                      'lng': '-105.045148',
                      'location': 'W 10TH AVE / N UTICA ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '257568',
                      'time': '15:46:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.733881',
                      'lng': '-105.025157',
                      'location': 'W 11TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '257827',
                      'time': '22:36:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.733067',
                      'lng': '-105.048242',
                      'location': 'W 10TH AVE / N WINONA CT',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '257864',
                      'time': '18:11:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.733881',
                      'lng': '-105.025157',
                      'location': '1100-BLK N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '259028',
                      'time': '23:25:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.733008',
                      'lng': '-105.040467',
                      'location': '1000-BLK N QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '259043',
                      'time': '18:53:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.733055',
                      'lng': '-105.046955',
                      'location': 'W 10TH AVE / N VRAIN ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '259069',
                      'time': '08:01:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.733055',
                      'lng': '-105.046955',
                      'location': 'W 10TH AVE / N VRAIN ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '259070',
                      'time': '11:37:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.733885',
                      'lng': '-105.020406',
                      'location': '2715 W 11TH AVE',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '259080',
                      'time': '08:21:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.73299',
                      'lng': '-105.021744',
                      'location': 'W 10TH AVE / N DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '259488',
                      'time': '20:08:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.733881',
                      'lng': '-105.025157',
                      'location': '1100-BLK N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '259641',
                      'time': '00:20:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.732942',
                      'lng': '-105.032143',
                      'location': 'W 10TH AVE / N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '259882',
                      'time': '17:33:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.733055',
                      'lng': '-105.046955',
                      'location': 'W 10TH AVE / N VRAIN ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '260272',
                      'time': '11:42:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.739235',
                      'lng': '-105.029851',
                      'location': 'W 14TH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '268924',
                      'time': '10:56:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.738007',
                      'lng': '-105.025152',
                      'location': 'W 14TH AVE / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '271132',
                      'time': '00:36:16',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.738491',
                      'lng': '-105.052068',
                      'location': '1400 N ZENOBIA ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '271181',
                      'time': '09:18:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738474',
                      'lng': '-105.033425',
                      'location': 'W 14TH AVE / N KING ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '271266',
                      'time': '23:57:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.739235',
                      'lng': '-105.029851',
                      'location': 'W 14TH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '273303',
                      'time': '09:24:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.738491',
                      'lng': '-105.052068',
                      'location': 'W 14TH AVE / N ZENOBIA ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '276230',
                      'time': '10:13:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.738475',
                      'lng': '-105.029842',
                      'location': '1400 N IRVING ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '276404',
                      'time': '02:25:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.738489',
                      'lng': '-105.047519',
                      'location': '1400-Wolff N WINONA CT',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '276575',
                      'time': '20:56:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.73848',
                      'lng': '-105.041659',
                      'location': '1400-BLK N RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '276592',
                      'time': '23:43:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.738471',
                      'lng': '-105.039311',
                      'location': '1400 N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '277228',
                      'time': '09:24:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.738004',
                      'lng': '-105.026052',
                      'location': 'W 14TH AVE / W AVONDALE DR',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '277350',
                      'time': '16:24:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.738491',
                      'lng': '-105.052068',
                      'location': '1400 N ZENOBIA ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '278058',
                      'time': '02:06:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738479',
                      'lng': '-105.03581',
                      'location': '1400-BLK N MEADE ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '278148',
                      'time': '00:34:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.73848',
                      'lng': '-105.045184',
                      'location': 'W 14TH AVE / N UTICA ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '278695',
                      'time': '15:16:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738471',
                      'lng': '-105.039311',
                      'location': 'W 14TH AVE / N PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '278709',
                      'time': '21:21:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738471',
                      'lng': '-105.039311',
                      'location': 'N PERRY ST / W 14TH AVE',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '278733',
                      'time': '23:22:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738475',
                      'lng': '-105.029842',
                      'location': '1400-BLK N IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '278808',
                      'time': '01:38:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738004',
                      'lng': '-105.026052',
                      'location': 'W 14TH AVE / W AVONDALE DR',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '279178',
                      'time': '02:28:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.73848',
                      'lng': '-105.045184',
                      'location': '1400 N UTICA ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '279291',
                      'time': '12:05:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.738007',
                      'lng': '-105.025152',
                      'location': 'N FEDERAL BLVD / W 14TH AVE',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '279488',
                      'time': '14:56:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.73848',
                      'lng': '-105.045184',
                      'location': 'W 14TH AVE / N UTICA ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '279902',
                      'time': '23:06:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.738488',
                      'lng': '-105.046351',
                      'location': 'W 14TH AVE / N VRAIN ST',
                      'outcome': 'warning',
                      'precinct': '122',
                      'raw_row_number': '280207',
                      'time': '02:04:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.73848',
                      'lng': '-105.040478',
                      'location': '1400-BLK N QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '280254',
                      'time': '00:24:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740171',
                      'lng': '-105.039325',
                      'location': '1490 N PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '296719',
                      'time': '23:21:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740171',
                      'lng': '-105.039325',
                      'location': '1490 N PERRY ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '296720',
                      'time': '21:17:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740171',
                      'lng': '-105.039325',
                      'location': '1490 N PERRY ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '296725',
                      'time': '20:37:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.740171',
                      'lng': '-105.039325',
                      'location': '1490 N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '122',
                      'raw_row_number': '296728',
                      'time': '23:16:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740029',
                      'lng': '-105.020532',
                      'location': '2700-BLK W COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '122',
                      'raw_row_number': '297889',
                      'time': '00:33:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.739945',
                      'lng': '-105.022685',
                      'location': 'W COLFAX AVE / N ELIOT ST',
                      'outcome': 'citation',
                      'precinct': '122',
                      'raw_row_number': '299903',
                      'time': '13:33:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '123': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.727328',
                      'lng': '-104.9952',
                      'location': '700-ELATI N FOX ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '199899',
                      'time': '22:41:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.725538',
                      'lng': '-105.013127',
                      'location': '0 W 6TH AVE / I25 NB',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '200122',
                      'time': '07:20:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.72893',
                      'lng': '-104.994036',
                      'location': '800 N ELATI ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '200365',
                      'time': '01:05:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '200822',
                      'time': '00:18:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '200839',
                      'time': '02:27:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '200842',
                      'time': '22:57:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made,T - Citation Issue',
                      'district': '1',
                      'lat': '39.72732',
                      'lng': '-105.000192',
                      'location': 'W 7TH AVE / N KALAMATH ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '201306',
                      'time': '06:21:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '201415',
                      'time': '11:22:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.725693',
                      'lng': '-104.99637800000001',
                      'location': '600 N GALAPAGO ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '202561',
                      'time': '18:57:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.725693',
                      'lng': '-104.99637800000001',
                      'location': '700-BLK W 6TH AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '202571',
                      'time': '01:01:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.728906',
                      'lng': '-105.00159',
                      'location': 'W 8TH AVE / N LIPAN ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '203009',
                      'time': '23:10:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.727316',
                      'lng': '-104.998602',
                      'location': 'W 7TH AVE / N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '203781',
                      'time': '23:07:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.727316',
                      'lng': '-104.998602',
                      'location': '900 W 7TH AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '203791',
                      'time': '22:32:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.727348',
                      'lng': '-104.992845',
                      'location': 'N DELAWARE ST / W 7TH AVE',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '203869',
                      'time': '00:33:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.727326',
                      'lng': '-105.00161',
                      'location': '1101 W 7TH AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '204227',
                      'time': '09:29:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.725672',
                      'lng': '-104.992823',
                      'location': '400 W 6TH AVE',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '205074',
                      'time': '00:09:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.725669',
                      'lng': '-104.992157',
                      'location': 'W 6TH AVE / N CHEROKEE ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '205655',
                      'time': '23:09:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.725708',
                      'lng': '-105.000148',
                      'location': 'W 6TH AVE / N KALAMATH ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '206927',
                      'time': '00:12:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.725708',
                      'lng': '-105.000148',
                      'location': 'W 6TH AVE / N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '206929',
                      'time': '02:50:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.72893',
                      'lng': '-104.994036',
                      'location': '800-BLK N ELATI ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '208815',
                      'time': '12:10:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.725521',
                      'lng': '-105.013356',
                      'location': 'W 6TH AVE / I25 SB',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '210536',
                      'time': '23:53:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.725521',
                      'lng': '-105.013356',
                      'location': 'I25 SB / W 6TH AVE',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '211233',
                      'time': '23:07:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.725708',
                      'lng': '-105.000148',
                      'location': 'W 6TH AVE / N KALAMATH ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '211400',
                      'time': '00:23:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.725708',
                      'lng': '-105.000148',
                      'location': '600 N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '211479',
                      'time': '22:22:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.725521',
                      'lng': '-105.013356',
                      'location': 'W 6TH AVE / I25 SB',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '211821',
                      'time': '00:20:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.725538',
                      'lng': '-105.013127',
                      'location': 'I25 NB / W 6TH AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '212418',
                      'time': '17:02:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.725521',
                      'lng': '-105.013356',
                      'location': 'I25 SB / W 6TH AVE',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '212600',
                      'time': '06:50:09',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.725521',
                      'lng': '-105.013356',
                      'location': 'W 6TH AVE / I25 SB',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '212676',
                      'time': '07:21:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.725521',
                      'lng': '-105.013356',
                      'location': 'W 6TH AVE / I25 SB',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '213176',
                      'time': '07:38:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.725708',
                      'lng': '-105.000148',
                      'location': '600 N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '213538',
                      'time': '23:33:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.725707',
                      'lng': '-104.998573',
                      'location': 'W 6TH AVE / N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '213556',
                      'time': '10:55:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Detox Van',
                      'district': '1',
                      'lat': '39.725659',
                      'lng': '-104.990469',
                      'location': 'W 6TH AVE / N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '214235',
                      'time': '21:25:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.725521',
                      'lng': '-105.013356',
                      'location': 'I25 SB / W 6TH AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '219721',
                      'time': '00:35:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.732099',
                      'lng': '-105.002828',
                      'location': '1000 N MARIPOSA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '220021',
                      'time': '00:36:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.733689',
                      'lng': '-105.000158',
                      'location': '1100 N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '221445',
                      'time': '11:47:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.733777',
                      'lng': '-104.998658',
                      'location': '1107 N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '221469',
                      'time': '22:03:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.7321',
                      'lng': '-104.998648',
                      'location': '1000-KALAMATH N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '221637',
                      'time': '21:37:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.733705',
                      'lng': '-105.005272',
                      'location': '1100 N OSAGE ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '222260',
                      'time': '23:42:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.733689',
                      'lng': '-105.000158',
                      'location': '1100 N KALAMATH ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '222573',
                      'time': '09:38:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.733705',
                      'lng': '-105.005272',
                      'location': 'W 11TH AVE / N OSAGE ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '222776',
                      'time': '00:43:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Detox Van',
                      'district': '1',
                      'lat': '39.73368',
                      'lng': '-104.998657',
                      'location': 'W 11TH AVE / N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '222801',
                      'time': '20:25:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.73368',
                      'lng': '-104.998657',
                      'location': 'W 11TH AVE / N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '222875',
                      'time': '01:29:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.73368',
                      'lng': '-104.998657',
                      'location': 'W 11TH AVE / N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '223025',
                      'time': '10:36:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.73368',
                      'lng': '-104.998657',
                      'location': '1100 N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '223443',
                      'time': '10:27:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.73368',
                      'lng': '-104.998657',
                      'location': '1100-KALAMATH N SANTA FE DR',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '223535',
                      'time': '00:08:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.73368',
                      'lng': '-104.996516',
                      'location': 'W 11TH AVE / N GALAPAGO ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '223550',
                      'time': '00:13:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.73368',
                      'lng': '-104.996516',
                      'location': 'W 11TH AVE / N GALAPAGO ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '223553',
                      'time': '10:26:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.733675',
                      'lng': '-104.995328',
                      'location': '601 W 11TH AVE',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '223634',
                      'time': '00:03:01',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.733777',
                      'lng': '-104.998658',
                      'location': '1107 N SANTA FE DR',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '224070',
                      'time': '19:18:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.73368',
                      'lng': '-104.996516',
                      'location': 'W 11TH AVE / N GALAPAGO ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '224129',
                      'time': '23:22:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.73368',
                      'lng': '-104.998657',
                      'location': '1101 N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '224514',
                      'time': '22:24:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.731308',
                      'lng': '-104.994069',
                      'location': '951 N ELATI ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '228414',
                      'time': '10:34:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.731308',
                      'lng': '-104.994069',
                      'location': '951 N ELATI ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '229025',
                      'time': '13:30:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.730523',
                      'lng': '-104.994059',
                      'location': '900 N ELATI ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '229459',
                      'time': '08:27:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.72931',
                      'lng': '-105.013191',
                      'location': 'W 8TH AVE / N VALLEJO ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '229490',
                      'time': '21:59:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.730504',
                      'lng': '-104.998632',
                      'location': 'W 9TH AVE / N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '229739',
                      'time': '23:48:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.727316',
                      'lng': '-104.998602',
                      'location': '900-BLK W 7TH AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '230551',
                      'time': '00:07:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729322',
                      'lng': '-105.015054',
                      'location': '2300 W 8TH AVE',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '230706',
                      'time': '23:36:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.732091',
                      'lng': '-105.000158',
                      'location': 'W 10TH AVE / N KALAMATH ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '231115',
                      'time': '22:18:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729322',
                      'lng': '-105.015054',
                      'location': 'I25 SB / W 8TH AVE',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '231447',
                      'time': '07:27:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.72932',
                      'lng': '-105.013988',
                      'location': '800 N WYANDOT ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '231464',
                      'time': '00:10:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.732091',
                      'lng': '-105.000158',
                      'location': '1000-1100 N KALAMATH ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '231688',
                      'time': '06:32:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.731269',
                      'lng': '-104.99864',
                      'location': '948 N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '232697',
                      'time': '11:55:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.729322',
                      'lng': '-105.015054',
                      'location': '2300 W 8TH AVE',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '233343',
                      'time': '23:48:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.72932',
                      'lng': '-105.013988',
                      'location': 'W 8TH AVE / N WYANDOT ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '234112',
                      'time': '23:35:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.72932',
                      'lng': '-105.013988',
                      'location': '800 N WYANDOT ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '234115',
                      'time': '02:32:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.730506',
                      'lng': '-104.997602',
                      'location': '900-Blk N INCA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '234327',
                      'time': '16:04:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.72932',
                      'lng': '-105.013988',
                      'location': '800 N WYANDOT ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '234702',
                      'time': '00:28:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.73051',
                      'lng': '-104.996413',
                      'location': '700 W 9TH AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '235064',
                      'time': '11:02:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.72732',
                      'lng': '-105.000192',
                      'location': 'W 7TH AVE / N KALAMATH ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '235324',
                      'time': '23:57:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.727316',
                      'lng': '-104.998602',
                      'location': '700 N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '235680',
                      'time': '20:09:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.728925',
                      'lng': '-105.000176',
                      'location': '800 N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '236211',
                      'time': '23:33:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.72732',
                      'lng': '-105.000192',
                      'location': 'W 7TH AVE / N KALAMATH ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '236529',
                      'time': '23:27:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.72732',
                      'lng': '-105.000192',
                      'location': '700 N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '236537',
                      'time': '12:26:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '236757',
                      'time': '20:44:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '236758',
                      'time': '19:52:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '236763',
                      'time': '17:44:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '237333',
                      'time': '03:10:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '237350',
                      'time': '18:25:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '237969',
                      'time': '19:44:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '238264',
                      'time': '18:38:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.72932',
                      'lng': '-105.013988',
                      'location': 'W 8TH AVE / N WYANDOT ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '238290',
                      'time': '01:55:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '238544',
                      'time': '21:01:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '238545',
                      'time': '01:06:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '238875',
                      'time': '18:31:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '238876',
                      'time': '11:42:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '239456',
                      'time': '20:13:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '239475',
                      'time': '05:56:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.728925',
                      'lng': '-105.000176',
                      'location': 'W 8TH AVE / N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '239537',
                      'time': '00:03:27',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.728131',
                      'lng': '-104.990205',
                      'location': '777 N BANNOCK ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '240088',
                      'time': '00:09:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.730502',
                      'lng': '-105.000169',
                      'location': '900 N KALAMATH ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '240233',
                      'time': '14:25:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.736883',
                      'lng': '-105.005258',
                      'location': '1300-BLK N OSAGE ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '240441',
                      'time': '08:10:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.736867',
                      'lng': '-104.99869',
                      'location': '1300-BLK N SANTA FE DR',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '240489',
                      'time': '22:59:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.735283',
                      'lng': '-105.002822',
                      'location': 'W 12TH AVE / N MARIPOSA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '240727',
                      'time': '22:55:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.737352',
                      'lng': '-104.996831',
                      'location': '1331 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '243915',
                      'time': '09:23:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'No Police Needed',
                      'district': '1',
                      'lat': '39.737352',
                      'lng': '-104.996831',
                      'location': '1331 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '243995',
                      'time': '21:03:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.738469',
                      'lng': '-105.001558',
                      'location': '1400-BLK N LIPAN ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '244274',
                      'time': '04:27:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.738469',
                      'lng': '-105.001558',
                      'location': '1400-BLK N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '244852',
                      'time': '01:47:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.735269',
                      'lng': '-104.998673',
                      'location': 'W 12TH AVE / N SANTA FE DR',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '245858',
                      'time': '08:07:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.735269',
                      'lng': '-104.998673',
                      'location': '900 W 12TH AVE',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '248846',
                      'time': '15:11:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.733699',
                      'lng': '-105.004075',
                      'location': 'W 11TH AVE / N NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '250860',
                      'time': '23:35:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.735272',
                      'lng': '-105.000151',
                      'location': '1200 N KALAMATH ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '251911',
                      'time': '09:48:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.736872',
                      'lng': '-105.002818',
                      'location': '1300 N MARIPOSA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '252539',
                      'time': '09:43:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.735905',
                      'lng': '-104.99868',
                      'location': '1240 N SANTA FE DR',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '252587',
                      'time': '10:14:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '1',
                      'lat': '39.735283',
                      'lng': '-105.002822',
                      'location': 'W 12TH AVE / N MARIPOSA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '253265',
                      'time': '14:17:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.736867',
                      'lng': '-104.99869',
                      'location': '1300-BLK N SANTA FE DR',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '255101',
                      'time': '22:08:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.733678',
                      'lng': '-104.997599',
                      'location': 'W 11TH AVE / N INCA ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '256279',
                      'time': '20:31:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.732105',
                      'lng': '-104.997615',
                      'location': 'W 10TH AVE / N INCA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '257712',
                      'time': '09:32:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.732105',
                      'lng': '-104.997615',
                      'location': 'W 10TH AVE / N INCA ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '257719',
                      'time': '12:20:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.733679',
                      'lng': '-104.998137',
                      'location': '900 W 11TH AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '258116',
                      'time': '10:19:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.733692',
                      'lng': '-105.00158',
                      'location': 'W 11TH AVE / N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '258946',
                      'time': '19:58:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.733689',
                      'lng': '-105.000158',
                      'location': '1100 N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '259292',
                      'time': '13:35:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.733689',
                      'lng': '-105.000158',
                      'location': '1100 N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '259306',
                      'time': '15:45:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.733689',
                      'lng': '-105.000158',
                      'location': '1100 N KALAMATH ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '259307',
                      'time': '10:15:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.740021',
                      'lng': '-105.004029',
                      'location': '1300 W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '263048',
                      'time': '10:36:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740094',
                      'lng': '-105.002808',
                      'location': 'W COLFAX AVE / N MARIPOSA ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '264835',
                      'time': '23:05:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.739618',
                      'lng': '-105.012291',
                      'location': 'W COLFAX AVE / N UMATILLA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '274655',
                      'time': '13:38:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.738474',
                      'lng': '-105.00282',
                      'location': 'W 14TH AVE / N MARIPOSA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '277944',
                      'time': '21:36:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738466',
                      'lng': '-105.000132',
                      'location': 'W 14TH AVE / N KALAMATH ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '277950',
                      'time': '08:07:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.738464',
                      'lng': '-104.999358',
                      'location': 'W 14TH AVE / N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '278883',
                      'time': '10:10:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.738472',
                      'lng': '-105.005226',
                      'location': 'W 14TH AVE / N OSAGE ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '280363',
                      'time': '16:28:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.738464',
                      'lng': '-104.999358',
                      'location': 'W 14TH AVE / N SANTA FE DR',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '280692',
                      'time': '10:07:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740155',
                      'lng': '-105.005237',
                      'location': '1400-BLK W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '287461',
                      'time': '01:53:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740155',
                      'lng': '-105.005237',
                      'location': 'W COLFAX AVE / N OSAGE ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '290435',
                      'time': '18:12:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740155',
                      'lng': '-105.005237',
                      'location': 'W COLFAX AVE / N OSAGE ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '293954',
                      'time': '04:35:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740013',
                      'lng': '-105.000153',
                      'location': 'W COLFAX AVE / N KALAMATH ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '296448',
                      'time': '11:54:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Report Made',
                      'district': '1',
                      'lat': '39.740094',
                      'lng': '-105.002808',
                      'location': 'W COLFAX AVE / N MARIPOSA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '296542',
                      'time': '15:42:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740023',
                      'lng': '-104.998791',
                      'location': 'W COLFAX AVE / N SPEER BLVD',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '296752',
                      'time': '02:12:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740013',
                      'lng': '-105.000153',
                      'location': 'W COLFAX AVE / N KALAMATH ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '297018',
                      'time': '14:22:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Back Up / Cover Car',
                      'district': '1',
                      'lat': '39.740013',
                      'lng': '-105.000153',
                      'location': 'W COLFAX AVE / N KALAMATH ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '297614',
                      'time': '04:05:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740023',
                      'lng': '-104.998791',
                      'location': 'W COLFAX AVE / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '299404',
                      'time': '03:17:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740023',
                      'lng': '-104.998791',
                      'location': 'N SPEER BLVD / W COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '299409',
                      'time': '12:11:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.740098',
                      'lng': '-105.00157',
                      'location': 'W COLFAX AVE / N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '300065',
                      'time': '02:37:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.740013',
                      'lng': '-105.000153',
                      'location': 'N KALAMATH ST / W COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '300861',
                      'time': '01:15:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.740328',
                      'lng': '-105.013948',
                      'location': 'W COLFAX AVE / I25 NB',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '319273',
                      'time': '23:16:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.740328',
                      'lng': '-105.013948',
                      'location': 'W COLFAX AVE / I25 NB',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '325350',
                      'time': '18:54:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '1',
                      'lat': '39.744058',
                      'lng': '-105.000606',
                      'location': '1200-BLK ARAPAHOE ST',
                      'outcome': 'warning',
                      'precinct': '123',
                      'raw_row_number': '334533',
                      'time': '01:00:59',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.743928',
                      'lng': '-105.008668',
                      'location': '7TH ST / WALNUT ST',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '337533',
                      'time': '10:18:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.747627',
                      'lng': '-105.002647',
                      'location': 'N SPEER BLVD / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '364222',
                      'time': '17:55:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.744473',
                      'lng': '-105.000014',
                      'location': 'N SPEER BLVD / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '373056',
                      'time': '11:14:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.745007',
                      'lng': '-105.009461',
                      'location': '7TH ST / AURARIA PKWY',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '375791',
                      'time': '10:12:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.748461',
                      'lng': '-105.003345',
                      'location': 'N SPEER BLVD / BLAKE ST',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '381565',
                      'time': '12:22:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.749995',
                      'lng': '-105.006934',
                      'location': '1009 WEWATTA ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '381899',
                      'time': '22:48:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '1',
                      'lat': '39.748461',
                      'lng': '-105.003345',
                      'location': 'N SPEER BLVD / AURARIA PKWY',
                      'outcome': 'arrest',
                      'precinct': '123',
                      'raw_row_number': '382082',
                      'time': '23:33:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.751979',
                      'lng': '-105.009459',
                      'location': '1201 ELITCH CIR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '394082',
                      'time': '11:16:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.751979',
                      'lng': '-105.014742',
                      'location': '700 WATER ST',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '399036',
                      'time': '12:45:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.751321',
                      'lng': '-105.016529',
                      'location': 'I25 NB / W 23RD AVE',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '400731',
                      'time': '01:35:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '1',
                      'lat': '39.755131',
                      'lng': '-105.012718',
                      'location': 'I25 NB / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '403402',
                      'time': '10:07:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.755131',
                      'lng': '-105.012718',
                      'location': '0 I25 NB / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '407397',
                      'time': '09:42:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.755131',
                      'lng': '-105.012718',
                      'location': 'I25 NB / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '409189',
                      'time': '10:44:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.755131',
                      'lng': '-105.012718',
                      'location': 'N SPEER BLVD / I25 NB',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '410423',
                      'time': '20:31:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '1',
                      'lat': '39.755131',
                      'lng': '-105.012718',
                      'location': 'I25 NB / N SPEER BLVD',
                      'outcome': 'citation',
                      'precinct': '123',
                      'raw_row_number': '415677',
                      'time': '13:27:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '1',
                      'lat': '39.752982',
                      'lng': '-105.008237',
                      'location': 'N SPEER BLVD / ELITCH CIR',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '418158',
                      'time': '00:17:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'File Only',
                      'district': '1',
                      'lat': '39.754056',
                      'lng': '-105.010218',
                      'location': 'WATER ST / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '123',
                      'raw_row_number': '418935',
                      'time': '07:11:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'}],
             '211': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.750714',
                      'lng': '-104.965942',
                      'location': 'E 23RD AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '379287',
                      'time': '01:21:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.750714',
                      'lng': '-104.965942',
                      'location': '2300 N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '379860',
                      'time': '10:31:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.75072',
                      'lng': '-104.96471',
                      'location': 'E 23RD AVE / N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '379881',
                      'time': '03:03:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.750718',
                      'lng': '-104.959767',
                      'location': 'E 23RD AVE / N YORK ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '385889',
                      'time': '22:48:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.753229',
                      'lng': '-104.974567',
                      'location': 'E 25TH AVE / N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '390252',
                      'time': '10:12:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.751975',
                      'lng': '-104.968416',
                      'location': '2400-BLK-HUMBOLT N FRANKLIN ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '395323',
                      'time': '10:28:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.752566',
                      'lng': '-104.973364',
                      'location': '2447 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '396113',
                      'time': '01:04:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.751995',
                      'lng': '-104.978134',
                      'location': 'TREMONT PL / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '397207',
                      'time': '21:05:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.750718',
                      'lng': '-104.959767',
                      'location': 'E 23RD AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '400023',
                      'time': '15:23:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.754468',
                      'lng': '-104.959758',
                      'location': 'E 26TH AVE / N YORK ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '401625',
                      'time': '22:41:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.754468',
                      'lng': '-104.959758',
                      'location': 'E 26TH AVE / N YORK ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '401630',
                      'time': '13:00:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.754938',
                      'lng': '-104.983057',
                      'location': '25TH ST / CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '401672',
                      'time': '23:29:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.754938',
                      'lng': '-104.983057',
                      'location': '25TH ST / CHAMPA ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '402804',
                      'time': '02:20:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.754468',
                      'lng': '-104.959758',
                      'location': 'E 26TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '404511',
                      'time': '00:15:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756538',
                      'lng': '-104.982719',
                      'location': '26TH ST / CURTIS ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '405949',
                      'time': '00:34:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.754466',
                      'lng': '-104.963454',
                      'location': 'E 26TH AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '408237',
                      'time': '07:09:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.754479',
                      'lng': '-104.972127',
                      'location': 'E 26TH AVE / N MARION ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '408536',
                      'time': '18:40:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.754486',
                      'lng': '-104.965959',
                      'location': 'E 26TH AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '409172',
                      'time': '07:27:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.754485',
                      'lng': '-104.969647',
                      'location': 'E 26TH AVE / N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '409436',
                      'time': '17:50:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.75448',
                      'lng': '-104.967168',
                      'location': 'E 26TH AVE / N GILPIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '409456',
                      'time': '17:36:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.754623',
                      'lng': '-104.974561',
                      'location': 'E 26TH AVE / TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '410255',
                      'time': '18:20:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.754548',
                      'lng': '-104.973359',
                      'location': 'N DOWNING ST / E 26TH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '411028',
                      'time': '16:45:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.754548',
                      'lng': '-104.973359',
                      'location': '2600 N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '411030',
                      'time': '01:19:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.753861',
                      'lng': '-104.97926',
                      'location': '2600 WELTON ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '411317',
                      'time': '16:05:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Detox Van',
                      'district': '2',
                      'lat': '39.753243',
                      'lng': '-104.975762',
                      'location': '2500 N EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '411353',
                      'time': '11:04:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.75323',
                      'lng': '-104.96841',
                      'location': '2500 N FRANKLIN ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '414169',
                      'time': '22:39:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.754525',
                      'lng': '-104.980098',
                      'location': '26TH ST / CALIFORNIA ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '414509',
                      'time': '23:40:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.753589',
                      'lng': '-104.981315',
                      'location': '2500-BLK CALIFORNIA ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '414708',
                      'time': '12:12:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.753236',
                      'lng': '-104.976956',
                      'location': 'E 25TH AVE / N CLARKSON ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '414881',
                      'time': '01:31:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.753226',
                      'lng': '-104.973365',
                      'location': 'E 25TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '417745',
                      'time': '22:59:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.753226',
                      'lng': '-104.973365',
                      'location': 'E 25TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '417755',
                      'time': '01:17:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.756388',
                      'lng': '-104.977698',
                      'location': '700 28TH ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '423488',
                      'time': '03:25:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'File Only',
                      'district': '2',
                      'lat': '39.756988',
                      'lng': '-104.967234',
                      'location': '1700 E 28TH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '424856',
                      'time': '15:24:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.756988',
                      'lng': '-104.967234',
                      'location': '1700 E 28TH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '424858',
                      'time': '07:45:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.756988',
                      'lng': '-104.967234',
                      'location': '1700 E 28TH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '424890',
                      'time': '13:28:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.755028',
                      'lng': '-104.975946',
                      'location': '501 28TH ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '425509',
                      'time': '10:57:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.755729',
                      'lng': '-104.972133',
                      'location': '2700-BLK N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '425602',
                      'time': '22:26:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.755315',
                      'lng': '-104.973368',
                      'location': 'N DOWNING ST / TREMONT PL',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '426466',
                      'time': '09:04:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.755456',
                      'lng': '-104.978914',
                      'location': '27TH ST / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '426746',
                      'time': '23:24:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756904',
                      'lng': '-104.985719',
                      'location': '25TH ST / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '428740',
                      'time': '23:31:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Detox Van',
                      'district': '2',
                      'lat': '39.756985',
                      'lng': '-104.973363',
                      'location': '2800-BLK N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '428750',
                      'time': '16:30:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.756985',
                      'lng': '-104.973363',
                      'location': '2800-BLK N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '429114',
                      'time': '22:11:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756985',
                      'lng': '-104.973363',
                      'location': 'E 28TH AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '429173',
                      'time': '22:33:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.756984',
                      'lng': '-104.965952',
                      'location': 'E 28TH AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '429665',
                      'time': '01:04:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.756984',
                      'lng': '-104.964724',
                      'location': 'E 28TH AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '429703',
                      'time': '11:40:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.757131',
                      'lng': '-104.980215',
                      'location': '2736 CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '430375',
                      'time': '13:42:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.757131',
                      'lng': '-104.980215',
                      'location': '2736 CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '430387',
                      'time': '20:24:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.757131',
                      'lng': '-104.980215',
                      'location': '2736 CHAMPA ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '430397',
                      'time': '14:59:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.757131',
                      'lng': '-104.980215',
                      'location': '2736 CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '430418',
                      'time': '10:04:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.758241',
                      'lng': '-104.973349',
                      'location': '2900-BLK N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '432125',
                      'time': '16:28:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.755738',
                      'lng': '-104.969661',
                      'location': 'E 27TH AVE / N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '433382',
                      'time': '12:23:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.755734',
                      'lng': '-104.965954',
                      'location': '2700 N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '433396',
                      'time': '23:51:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.755732',
                      'lng': '-104.959759',
                      'location': 'E 27TH AVE / N YORK ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '433515',
                      'time': '01:13:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.758232',
                      'lng': '-104.964721',
                      'location': '2900-BLK-WILLIAMS N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '433541',
                      'time': '12:50:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.760749',
                      'lng': '-104.968425',
                      'location': 'E 31ST AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '434657',
                      'time': '20:35:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.760747',
                      'lng': '-104.96098',
                      'location': 'E 31ST AVE / N GAYLORD ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '434725',
                      'time': '22:45:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.760741',
                      'lng': '-104.965953',
                      'location': 'E 31ST AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '434750',
                      'time': '20:23:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.760747',
                      'lng': '-104.96098',
                      'location': '3100 N GAYLORD ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '435154',
                      'time': '00:31:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761309',
                      'lng': '-104.974836',
                      'location': '3181 CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '435722',
                      'time': '12:46:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761212',
                      'lng': '-104.976689',
                      'location': '31ST ST / CURTIS ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '436605',
                      'time': '16:53:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.759492',
                      'lng': '-104.972115',
                      'location': '3000-Blk-Downing N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '436920',
                      'time': '17:36:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.759492',
                      'lng': '-104.972115',
                      'location': '1300 E 30TH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '437300',
                      'time': '23:21:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.759492',
                      'lng': '-104.972115',
                      'location': 'E 30TH AVE / N MARION ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '437334',
                      'time': '19:48:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.759492',
                      'lng': '-104.972115',
                      'location': 'E 30TH AVE / N MARION ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '437340',
                      'time': '10:07:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.759492',
                      'lng': '-104.972115',
                      'location': 'E 30TH AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '437359',
                      'time': '07:32:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.759492',
                      'lng': '-104.972115',
                      'location': '3000-DOWNING N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '437372',
                      'time': '18:53:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.759492',
                      'lng': '-104.972115',
                      'location': '3000-3100-BLK N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '437377',
                      'time': '10:54:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.757217',
                      'lng': '-104.983594',
                      'location': '26TH ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '437725',
                      'time': '03:14:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.757319',
                      'lng': '-104.976493',
                      'location': '2900 CALIFORNIA ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '438008',
                      'time': '21:48:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.757622',
                      'lng': '-104.986539',
                      'location': '25TH ST / LARIMER ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '438722',
                      'time': '23:02:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.757622',
                      'lng': '-104.986539',
                      'location': '25TH ST / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '438748',
                      'time': '04:42:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.759605',
                      'lng': '-104.977028',
                      'location': '30TH ST / CHAMPA ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '438992',
                      'time': '15:19:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.757881',
                      'lng': '-104.984479',
                      'location': '26TH ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '439173',
                      'time': '13:20:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.758236',
                      'lng': '-104.970897',
                      'location': 'E 29TH AVE / N LAFAYETTE ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '440075',
                      'time': '10:40:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.758261',
                      'lng': '-104.975285',
                      'location': '30TH ST / CALIFORNIA ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '440580',
                      'time': '23:21:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.758239',
                      'lng': '-104.969661',
                      'location': 'E 29TH AVE / N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '440677',
                      'time': '12:27:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.75823',
                      'lng': '-104.959763',
                      'location': 'E 29TH AVE / N YORK ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '441028',
                      'time': '17:06:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.758239',
                      'lng': '-104.968418',
                      'location': 'E 29TH AVE / N FRANKLIN ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '441199',
                      'time': '10:47:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.760751',
                      'lng': '-104.972121',
                      'location': '3100-BLK N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '441472',
                      'time': '22:35:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.760751',
                      'lng': '-104.972121',
                      'location': 'E 31ST AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '441884',
                      'time': '18:18:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.760751',
                      'lng': '-104.972121',
                      'location': 'E 31ST AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '441890',
                      'time': '17:34:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.760759',
                      'lng': '-104.973342',
                      'location': 'E 31ST AVE / N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '442331',
                      'time': '17:09:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.759755',
                      'lng': '-104.982052',
                      'location': '28TH ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '442395',
                      'time': '20:17:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.761999',
                      'lng': '-104.96718',
                      'location': '3200-BLK-FRANKLIN N GILPIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '442916',
                      'time': '11:28:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.762423',
                      'lng': '-104.973345',
                      'location': '33RD ST / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '443028',
                      'time': '16:23:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761994',
                      'lng': '-104.964719',
                      'location': '3200-BLK N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '443488',
                      'time': '01:48:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761994',
                      'lng': '-104.964719',
                      'location': '3200 N HIGH ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '443578',
                      'time': '10:07:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.762048',
                      'lng': '-104.97334',
                      'location': '3200 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '444105',
                      'time': '04:07:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.762048',
                      'lng': '-104.97334',
                      'location': 'E MLK BLVD / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '444106',
                      'time': '01:37:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.763246',
                      'lng': '-104.970874',
                      'location': '3300 N LAFAYETTE ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '444675',
                      'time': '11:25:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.761481',
                      'lng': '-104.974614',
                      'location': '3200 CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '444863',
                      'time': '22:52:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.759496',
                      'lng': '-104.968415',
                      'location': '3000 N FRANKLIN ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '445564',
                      'time': '01:44:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.760746',
                      'lng': '-104.969657',
                      'location': 'E 31ST AVE / N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '445755',
                      'time': '02:57:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.760746',
                      'lng': '-104.969657',
                      'location': '1500 E 31ST AVE',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '446268',
                      'time': '22:14:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.760746',
                      'lng': '-104.969657',
                      'location': '3100 N HUMBOLDT ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '446271',
                      'time': '08:40:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.759485',
                      'lng': '-104.963445',
                      'location': '3000-BLK N RACE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '446307',
                      'time': '18:41:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.759493',
                      'lng': '-104.964723',
                      'location': '3000 N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '446313',
                      'time': '09:43:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.759508',
                      'lng': '-104.973325',
                      'location': 'E 30TH AVE / N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '447431',
                      'time': '23:52:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.760759',
                      'lng': '-104.973342',
                      'location': 'E 31ST AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '447739',
                      'time': '22:45:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.760759',
                      'lng': '-104.973342',
                      'location': 'E 31ST AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '447750',
                      'time': '12:07:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.760275',
                      'lng': '-104.977898',
                      'location': '3000 CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '448158',
                      'time': '14:31:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.760759',
                      'lng': '-104.973342',
                      'location': 'E 31ST AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '448322',
                      'time': '01:44:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.759502',
                      'lng': '-104.970872',
                      'location': 'E 30TH AVE / N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '448330',
                      'time': '17:02:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761354',
                      'lng': '-104.98173',
                      'location': '29TH ST / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '448536',
                      'time': '12:58:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.759508',
                      'lng': '-104.973325',
                      'location': 'E 30TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '448623',
                      'time': '04:20:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.760741',
                      'lng': '-104.965953',
                      'location': 'E 31ST AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '448652',
                      'time': '07:54:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.760759',
                      'lng': '-104.973342',
                      'location': '3100 N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '448935',
                      'time': '18:28:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.760751',
                      'lng': '-104.972121',
                      'location': '3100-BLK-DOWNING N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '449222',
                      'time': '16:46:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.760751',
                      'lng': '-104.972121',
                      'location': 'E 31ST AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '449234',
                      'time': '22:20:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.760751',
                      'lng': '-104.972121',
                      'location': '3100-BLK-DOWNING N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '449814',
                      'time': '16:02:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.760275',
                      'lng': '-104.977898',
                      'location': '3000 CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '449998',
                      'time': '14:26:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.760751',
                      'lng': '-104.972121',
                      'location': '3100-Blk-Lafay N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '450441',
                      'time': '10:57:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.760748',
                      'lng': '-104.959759',
                      'location': 'E 31ST AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '450502',
                      'time': '22:22:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.759492',
                      'lng': '-104.969656',
                      'location': '1500 E 30TH AVE',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '450771',
                      'time': '09:36:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.760748',
                      'lng': '-104.959759',
                      'location': '3100 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '451105',
                      'time': '22:47:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761481',
                      'lng': '-104.974614',
                      'location': '3200 CHAMPA ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '451607',
                      'time': '01:54:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761481',
                      'lng': '-104.974614',
                      'location': '32ND ST / CHAMPA ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '451619',
                      'time': '22:46:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Vehicle Towed',
                      'district': '2',
                      'lat': '39.759871',
                      'lng': '-104.974934',
                      'location': '31ST ST / STOUT ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '452319',
                      'time': '00:57:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.762048',
                      'lng': '-104.97334',
                      'location': '3200-BLK N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '452766',
                      'time': '17:16:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.762048',
                      'lng': '-104.97334',
                      'location': 'E MLK BLVD / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '452781',
                      'time': '02:20:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.763257',
                      'lng': '-104.973336',
                      'location': '3300 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '452795',
                      'time': '03:17:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764503',
                      'lng': '-104.967184',
                      'location': 'N GILPIN ST / E BRUCE RANDOLPH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '452973',
                      'time': '22:23:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.763655',
                      'lng': '-104.98224',
                      'location': '30TH ST / BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '453095',
                      'time': '02:06:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764508',
                      'lng': '-104.970884',
                      'location': 'E BRUCE RANDOLPH AVE / N LAFAYETTE ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '453470',
                      'time': '18:21:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764508',
                      'lng': '-104.970884',
                      'location': 'E BRUCE RANDOLPH AVE / N LAFAYETTE ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '453485',
                      'time': '21:56:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764508',
                      'lng': '-104.970884',
                      'location': 'E BRUCE RANDOLPH AVE / N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '453488',
                      'time': '08:17:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '453583',
                      'time': '08:15:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': '2300-BLK E BRUCE RANDOLPH AVE',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '453656',
                      'time': '21:51:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '454319',
                      'time': '15:42:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.963438',
                      'location': 'E BRUCE RANDOLPH AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '454662',
                      'time': '10:37:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.963438',
                      'location': 'E BRUCE RANDOLPH AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '454674',
                      'time': '18:57:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.762048',
                      'lng': '-104.97334',
                      'location': '3200 N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '455032',
                      'time': '01:17:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764503',
                      'lng': '-104.967184',
                      'location': 'E BRUCE RANDOLPH AVE / N GILPIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '455179',
                      'time': '10:49:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.963438',
                      'location': '2000 E BRUCE RANDOLPH AVE',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '455211',
                      'time': '00:55:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764507',
                      'lng': '-104.972101',
                      'location': 'E BRUCE RANDOLPH AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '455326',
                      'time': '16:58:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.963438',
                      'location': 'E BRUCE RANDOLPH AVE / N RACE ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '455787',
                      'time': '17:47:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '455863',
                      'time': '16:15:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '456375',
                      'time': '09:24:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764505',
                      'lng': '-104.969652',
                      'location': '1500 E BRUCE RANDOLPH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '456581',
                      'time': '23:19:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.7645',
                      'lng': '-104.965948',
                      'location': 'E BRUCE RANDOLPH AVE / N WILLIAMS ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '457253',
                      'time': '21:14:09',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.762827',
                      'lng': '-104.976361',
                      'location': '32ND ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '458338',
                      'time': '02:05:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.76201',
                      'lng': '-104.972116',
                      'location': 'E MLK BLVD / N MARION ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '459513',
                      'time': '22:19:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761996',
                      'lng': '-104.968419',
                      'location': '3200 N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '461001',
                      'time': '12:15:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.76201',
                      'lng': '-104.972116',
                      'location': 'E MLK BLVD / N MARION ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '461902',
                      'time': '22:54:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.763082',
                      'lng': '-104.974283',
                      'location': '33RD ST / CURTIS ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '462286',
                      'time': '22:42:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.762',
                      'lng': '-104.97088',
                      'location': 'E MLK BLVD / N LAFAYETTE ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '462489',
                      'time': '12:54:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761986',
                      'lng': '-104.962218',
                      'location': 'E MLK BLVD / N VINE ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '462559',
                      'time': '08:40:06',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761994',
                      'lng': '-104.965955',
                      'location': 'E MLK BLVD / N WILLIAMS ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '462614',
                      'time': '01:15:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761992',
                      'lng': '-104.959753',
                      'location': 'N YORK ST / E MLK BLVD',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '462761',
                      'time': '18:42:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.762139',
                      'lng': '-104.975495',
                      'location': '32ND ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '463079',
                      'time': '00:40:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.762139',
                      'lng': '-104.975495',
                      'location': '32ND ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '463214',
                      'time': '12:32:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.762139',
                      'lng': '-104.975495',
                      'location': '32ND ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '463396',
                      'time': '19:30:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.762139',
                      'lng': '-104.975495',
                      'location': '1000 32ND ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '463424',
                      'time': '04:54:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.762423',
                      'lng': '-104.973345',
                      'location': 'N DOWNING ST / CHAMPA ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '463634',
                      'time': '19:46:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.762423',
                      'lng': '-104.973345',
                      'location': '33RD ST / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '463641',
                      'time': '23:31:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.762423',
                      'lng': '-104.973345',
                      'location': '33RD ST / CHAMPA ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '463696',
                      'time': '17:32:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.761994',
                      'lng': '-104.965955',
                      'location': '3200-BLK N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '464936',
                      'time': '08:48:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761994',
                      'lng': '-104.965955',
                      'location': 'E MLK BLVD / N WILLIAMS ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '464944',
                      'time': '22:18:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.762',
                      'lng': '-104.97088',
                      'location': 'E MLK BLVD / N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '464980',
                      'time': '01:05:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '465733',
                      'time': '17:51:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '465734',
                      'time': '17:51:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '465868',
                      'time': '17:11:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '465869',
                      'time': '17:11:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '465882',
                      'time': '15:49:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '465883',
                      'time': '15:49:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '465915',
                      'time': '14:55:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764207999999996',
                      'lng': '-104.973336',
                      'location': '34TH ST / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '465994',
                      'time': '10:01:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '466189',
                      'time': '14:55:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.763247',
                      'lng': '-104.962212',
                      'location': '3300-BLK N VINE ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '466348',
                      'time': '00:22:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.7645',
                      'lng': '-104.965948',
                      'location': 'E BRUCE RANDOLPH AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '466392',
                      'time': '13:14:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.764508',
                      'lng': '-104.968423',
                      'location': 'E BRUCE RANDOLPH AVE / N FRANKLIN ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '466403',
                      'time': '18:44:22',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764508',
                      'lng': '-104.968423',
                      'location': 'E BRUCE RANDOLPH AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '466535',
                      'time': '11:00:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '466563',
                      'time': '16:33:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '466564',
                      'time': '16:33:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.962209',
                      'location': 'E BRUCE RANDOLPH AVE / N VINE ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '466712',
                      'time': '10:40:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764508',
                      'lng': '-104.968423',
                      'location': 'N FRANKLIN ST / E BRUCE RANDOLPH AVE',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '466872',
                      'time': '15:28:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764508',
                      'lng': '-104.968423',
                      'location': '1600 E BRUCE RANDOLPH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '466890',
                      'time': '11:21:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '466976',
                      'time': '17:49:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764513',
                      'lng': '-104.97334',
                      'location': 'E BRUCE RANDOLPH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '466977',
                      'time': '17:49:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.962209',
                      'location': '3400 N VINE ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '467005',
                      'time': '02:11:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '467103',
                      'time': '15:27:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '467172',
                      'time': '22:10:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.964715',
                      'location': 'E BRUCE RANDOLPH AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '467206',
                      'time': '18:59:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': '2300 E BRUCE RANDOLPH AVE',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '467521',
                      'time': '03:51:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.964715',
                      'location': 'E BRUCE RANDOLPH AVE / N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '467544',
                      'time': '21:11:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.964715',
                      'location': 'E BRUCE RANDOLPH AVE / N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '467562',
                      'time': '21:34:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '467728',
                      'time': '20:18:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '467743',
                      'time': '22:44:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'N YORK ST / E BRUCE RANDOLPH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '467751',
                      'time': '19:55:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '467752',
                      'time': '22:51:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '467848',
                      'time': '22:53:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '467879',
                      'time': '22:47:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'N YORK ST / E BRUCE RANDOLPH AVE',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '467895',
                      'time': '17:54:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764495',
                      'lng': '-104.960513',
                      'location': '2239 E BRUCE RANDOLPH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '467981',
                      'time': '23:06:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764489',
                      'lng': '-104.95976',
                      'location': 'E BRUCE RANDOLPH AVE / N YORK ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '468216',
                      'time': '23:04:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.763244',
                      'lng': '-104.964721',
                      'location': 'E 33RD AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '468688',
                      'time': '02:16:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.960977',
                      'location': 'E BRUCE RANDOLPH AVE / N GAYLORD ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '468836',
                      'time': '18:06:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.763244',
                      'lng': '-104.963443',
                      'location': 'E 33RD AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '469118',
                      'time': '16:13:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764508',
                      'lng': '-104.970884',
                      'location': 'N LAFAYETTE ST / E BRUCE RANDOLPH AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '469225',
                      'time': '22:49:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.763247',
                      'lng': '-104.962212',
                      'location': 'E 33RD AVE / N VINE ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '469475',
                      'time': '00:05:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.763247',
                      'lng': '-104.962212',
                      'location': 'N VINE ST / E 33RD AVE',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '469484',
                      'time': '00:20:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764498',
                      'lng': '-104.964715',
                      'location': 'E BRUCE RANDOLPH AVE / N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '469540',
                      'time': '20:27:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.763872',
                      'lng': '-104.973332',
                      'location': '3340 N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '469818',
                      'time': '15:34:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.763872',
                      'lng': '-104.973332',
                      'location': '3340 N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '470063',
                      'time': '18:56:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764508',
                      'lng': '-104.968423',
                      'location': 'E BRUCE RANDOLPH AVE / N FRANKLIN ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '472027',
                      'time': '08:26:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765759',
                      'lng': '-104.968426',
                      'location': 'E 35TH AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '472155',
                      'time': '08:43:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.765759',
                      'lng': '-104.968426',
                      'location': 'E 35TH AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '472189',
                      'time': '19:07:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764686',
                      'lng': '-104.973955',
                      'location': '34TH ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '473965',
                      'time': '18:57:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.763248',
                      'lng': '-104.960979',
                      'location': 'E 33RD AVE / N GAYLORD ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '474219',
                      'time': '23:18:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.763248',
                      'lng': '-104.960979',
                      'location': 'E 33RD AVE / N GAYLORD ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '474231',
                      'time': '01:46:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.765766',
                      'lng': '-104.973319',
                      'location': 'E 35TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '475490',
                      'time': '11:49:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.765766',
                      'lng': '-104.973319',
                      'location': '3500 N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '475595',
                      'time': '23:24:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Vehicle Towed',
                      'district': '2',
                      'lat': '39.765766',
                      'lng': '-104.973319',
                      'location': 'E 35TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '475609',
                      'time': '18:53:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.765766',
                      'lng': '-104.973319',
                      'location': '3500 N DOWNING ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '475912',
                      'time': '22:31:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.765751',
                      'lng': '-104.964722',
                      'location': 'E 35TH AVE / N HIGH ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '475970',
                      'time': '07:58:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.765766',
                      'lng': '-104.973319',
                      'location': 'E 35TH AVE / N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '475999',
                      'time': '08:25:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.765761',
                      'lng': '-104.970878',
                      'location': 'E 35TH AVE / N LAFAYETTE ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '476075',
                      'time': '22:06:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.765756',
                      'lng': '-104.965953',
                      'location': '3500-BLK N WILLIAMS ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '476361',
                      'time': '19:39:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.765746',
                      'lng': '-104.959747',
                      'location': 'E 35TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '476648',
                      'time': '00:26:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.765746',
                      'lng': '-104.959747',
                      'location': 'E 35TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '476660',
                      'time': '19:04:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.765748',
                      'lng': '-104.960979',
                      'location': 'E 35TH AVE / N GAYLORD ST',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '476851',
                      'time': '23:20:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.765746',
                      'lng': '-104.959747',
                      'location': 'E 35TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '476959',
                      'time': '02:14:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.765746',
                      'lng': '-104.959747',
                      'location': 'E 35TH AVE / N YORK ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '477001',
                      'time': '22:51:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'File Only',
                      'district': '2',
                      'lat': '39.765746',
                      'lng': '-104.959747',
                      'location': 'E 35TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '477032',
                      'time': '23:52:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766959',
                      'lng': '-104.96842',
                      'location': 'E 36TH AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '480055',
                      'time': '19:32:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.766959',
                      'lng': '-104.96842',
                      'location': 'E 36TH AVE / N FRANKLIN ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '480079',
                      'time': '07:54:27',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Vehicle Towed',
                      'district': '2',
                      'lat': '39.766965',
                      'lng': '-104.969641',
                      'location': '3600-BLK N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '480557',
                      'time': '15:56:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.767768',
                      'lng': '-104.972106',
                      'location': 'N MARION ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '482426',
                      'time': '18:37:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.768164',
                      'lng': '-104.972111',
                      'location': '3700-BLK N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '484520',
                      'time': '00:40:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.768164',
                      'lng': '-104.972111',
                      'location': '3700-BLK-LAFAYETTE N MARION ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '484533',
                      'time': '15:52:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.768164',
                      'lng': '-104.972111',
                      'location': 'E 37TH AVE / N MARION ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '484614',
                      'time': '01:34:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.768164',
                      'lng': '-104.972111',
                      'location': '3700 N MARION ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '484615',
                      'time': '18:48:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.768155',
                      'lng': '-104.959746',
                      'location': 'E 37TH AVE / N YORK ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '484971',
                      'time': '17:02:11',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'No Police Needed',
                      'district': '2',
                      'lat': '39.768162',
                      'lng': '-104.969636',
                      'location': '3700 N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '485165',
                      'time': '23:13:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.766278',
                      'lng': '-104.973624',
                      'location': '35TH ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '485356',
                      'time': '22:23:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.768155',
                      'lng': '-104.959746',
                      'location': 'E 37TH AVE / N YORK ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '485484',
                      'time': '15:55:57',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.768151',
                      'lng': '-104.965947',
                      'location': 'E 37TH AVE / N WILLIAMS ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '485827',
                      'time': '16:13:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Detox Van',
                      'district': '2',
                      'lat': '39.766059',
                      'lng': '-104.973329',
                      'location': '35TH ST / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '487049',
                      'time': '08:40:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766385',
                      'lng': '-104.973346',
                      'location': '3550 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '487454',
                      'time': '20:16:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766385',
                      'lng': '-104.973346',
                      'location': '3550 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '487455',
                      'time': '20:16:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766954',
                      'lng': '-104.974505',
                      'location': '1300 35TH ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '487565',
                      'time': '10:48:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766553',
                      'lng': '-104.983642',
                      'location': '31ST ST / N BRIGHTON BLVD',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '487665',
                      'time': '11:22:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Vehicle Towed',
                      'district': '2',
                      'lat': '39.766965',
                      'lng': '-104.969641',
                      'location': '3600-BLK N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '487763',
                      'time': '18:41:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.76696',
                      'lng': '-104.965952',
                      'location': 'E 36TH AVE / N WILLIAMS ST',
                      'outcome': 'warning',
                      'precinct': '211',
                      'raw_row_number': '487872',
                      'time': '23:43:07',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.76696',
                      'lng': '-104.965952',
                      'location': '3600 N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '487887',
                      'time': '23:36:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.766954',
                      'lng': '-104.963438',
                      'location': 'E 36TH AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '487912',
                      'time': '09:26:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766957',
                      'lng': '-104.96221',
                      'location': '3600 N VINE ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '488042',
                      'time': '17:13:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.767058',
                      'lng': '-104.984299',
                      'location': '31ST ST / ARKINS CT',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '488171',
                      'time': '12:44:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766957',
                      'lng': '-104.960974',
                      'location': 'E 36TH AVE / N GAYLORD ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '488217',
                      'time': '15:59:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.767624',
                      'lng': '-104.975363',
                      'location': '3500 WALNUT ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '489627',
                      'time': '00:47:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'No Police Needed',
                      'district': '2',
                      'lat': '39.769726',
                      'lng': '-104.959743',
                      'location': '3825 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '491177',
                      'time': '23:03:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.767624',
                      'lng': '-104.975363',
                      'location': '3500 WALNUT ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '497305',
                      'time': '01:11:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.77005',
                      'lng': '-104.964708',
                      'location': '1900 E 38TH AVE',
                      'outcome': 'citation',
                      'precinct': '211',
                      'raw_row_number': '497844',
                      'time': '10:25:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.769288',
                      'lng': '-104.959743',
                      'location': '3800 N YORK ST',
                      'outcome': 'arrest',
                      'precinct': '211',
                      'raw_row_number': '498661',
                      'time': '00:37:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.771328',
                      'lng': '-104.968392',
                      'location': 'E 39TH AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '498897',
                      'time': '13:23:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.771693',
                      'lng': '-104.980612',
                      'location': '35TH ST / ARKINS CT',
                      'outcome': 'NA',
                      'precinct': '211',
                      'raw_row_number': '510301',
                      'time': '12:00:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '212': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761879',
                      'lng': '-104.940581',
                      'location': 'E MLK BLVD / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '443405',
                      'time': '08:41:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761904',
                      'lng': '-104.951186',
                      'location': '3200 N ST PAUL ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '446985',
                      'time': '22:05:27',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.761904',
                      'lng': '-104.951186',
                      'location': '3100 E MLK BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '447049',
                      'time': '10:36:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761904',
                      'lng': '-104.951186',
                      'location': '3200-BLK N ST PAUL ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '447079',
                      'time': '19:22:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.76192',
                      'lng': '-104.954873',
                      'location': '3200-BLK N CLAYTON ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '453232',
                      'time': '21:48:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764472',
                      'lng': '-104.947491',
                      'location': '3400-BLK N COOK ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '453445',
                      'time': '19:25:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.763238',
                      'lng': '-104.958566',
                      'location': 'E 33RD AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '454030',
                      'time': '23:50:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764486',
                      'lng': '-104.958564',
                      'location': '3400 N JOSEPHINE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '455516',
                      'time': '22:39:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764471',
                      'lng': '-104.954881',
                      'location': 'E BRUCE RANDOLPH AVE / N CLAYTON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '455931',
                      'time': '20:28:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.76446',
                      'lng': '-104.952414',
                      'location': 'E BRUCE RANDOLPH AVE / N MILWAUKEE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '455941',
                      'time': '22:50:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764466',
                      'lng': '-104.953642',
                      'location': 'E BRUCE RANDOLPH AVE / N FILLMORE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '456102',
                      'time': '22:47:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764463',
                      'lng': '-104.945032',
                      'location': 'E BRUCE RANDOLPH AVE / N MONROE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '456512',
                      'time': '20:19:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.764486',
                      'lng': '-104.958564',
                      'location': 'E BRUCE RANDOLPH AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '456761',
                      'time': '23:19:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.763248',
                      'lng': '-104.959754',
                      'location': 'E 33RD AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '457209',
                      'time': '02:54:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761983',
                      'lng': '-104.957336',
                      'location': 'E MLK BLVD / N COLUMBINE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '458112',
                      'time': '23:43:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761989',
                      'lng': '-104.958565',
                      'location': 'E MLK BLVD / N JOSEPHINE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '458124',
                      'time': '20:27:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761896',
                      'lng': '-104.949913',
                      'location': 'E MLK BLVD / N STEELE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '458880',
                      'time': '22:15:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761879',
                      'lng': '-104.940581',
                      'location': '3200-BLK N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '458945',
                      'time': '22:38:17',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.761983',
                      'lng': '-104.957336',
                      'location': 'E MLK BLVD / N COLUMBINE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '459304',
                      'time': '15:33:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761983',
                      'lng': '-104.957336',
                      'location': 'E MLK BLVD / N COLUMBINE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '459328',
                      'time': '00:44:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.76192',
                      'lng': '-104.954873',
                      'location': '3200-BLK N CLAYTON ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '459804',
                      'time': '01:21:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.761896',
                      'lng': '-104.949913',
                      'location': '3200-BLK N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '460079',
                      'time': '07:36:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'File Only',
                      'district': '2',
                      'lat': '39.761879',
                      'lng': '-104.940581',
                      'location': 'N COLORADO BLVD / E MLK BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '460150',
                      'time': '10:38:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761972',
                      'lng': '-104.952415',
                      'location': '3200 N MILWAUKEE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '460219',
                      'time': '02:29:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764471',
                      'lng': '-104.954881',
                      'location': 'E BRUCE RANDOLPH AVE / N CLAYTON ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '461143',
                      'time': '00:43:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761879',
                      'lng': '-104.940581',
                      'location': 'E MLK BLVD / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '461334',
                      'time': '10:18:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761939',
                      'lng': '-104.947493',
                      'location': 'E MLK BLVD / N COOK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '461429',
                      'time': '10:27:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764463',
                      'lng': '-104.945032',
                      'location': '3400 N MONROE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '461815',
                      'time': '00:33:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761989',
                      'lng': '-104.958565',
                      'location': 'N JOSEPHINE ST / E MLK BLVD',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '462001',
                      'time': '16:18:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.763227',
                      'lng': '-104.956103',
                      'location': 'E 33RD AVE / N ELIZABETH ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '462409',
                      'time': '23:03:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764477',
                      'lng': '-104.957332',
                      'location': 'E BRUCE RANDOLPH AVE / N COLUMBINE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '466825',
                      'time': '20:52:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764477',
                      'lng': '-104.957332',
                      'location': 'E BRUCE RANDOLPH AVE / N COLUMBINE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '467081',
                      'time': '23:59:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764469',
                      'lng': '-104.951194',
                      'location': '3400 N ST PAUL ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '468276',
                      'time': '15:30:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764469',
                      'lng': '-104.951194',
                      'location': 'E BRUCE RANDOLPH AVE / N ST PAUL ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '468317',
                      'time': '19:31:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764469',
                      'lng': '-104.951194',
                      'location': '3400-BLK N ST PAUL ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '468365',
                      'time': '18:36:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764469',
                      'lng': '-104.951194',
                      'location': 'E BRUCE RANDOLPH AVE / N ST PAUL ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '468381',
                      'time': '17:48:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764469',
                      'lng': '-104.951194',
                      'location': 'E BRUCE RANDOLPH AVE / N ST PAUL ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '468384',
                      'time': '01:48:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764469',
                      'lng': '-104.951194',
                      'location': 'E BRUCE RANDOLPH AVE / N ST PAUL ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '468398',
                      'time': '16:42:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.763227',
                      'lng': '-104.953647',
                      'location': 'N FILLMORE ST / E 33RD AVE',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '468993',
                      'time': '02:12:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': 'E BRUCE RANDOLPH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '471373',
                      'time': '14:39:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': 'E BRUCE RANDOLPH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '471384',
                      'time': '16:54:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.765561',
                      'lng': '-104.94057',
                      'location': '3490 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '471924',
                      'time': '12:14:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.765707',
                      'lng': '-104.953643',
                      'location': 'E 35TH AVE / N FILLMORE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '472173',
                      'time': '18:04:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764474',
                      'lng': '-104.948719',
                      'location': 'E BRUCE RANDOLPH AVE / N ADAMS ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '473624',
                      'time': '11:17:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764474',
                      'lng': '-104.948719',
                      'location': 'E BRUCE RANDOLPH AVE / N ADAMS ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '473625',
                      'time': '19:58:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': '4000 E BRUCE RANDOLPH AVE',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '473805',
                      'time': '02:49:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': '4000 E BRUCE RANDOLPH AVE',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '473956',
                      'time': '04:06:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': '3400-BLK-ALBION N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '474061',
                      'time': '07:26:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': '3400 N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '474104',
                      'time': '13:22:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': '3400 N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '474105',
                      'time': '20:01:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': '3400 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '474169',
                      'time': '13:35:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': 'E BRUCE RANDOLPH AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '474465',
                      'time': '02:14:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': 'E BRUCE RANDOLPH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '474466',
                      'time': '01:27:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.765698',
                      'lng': '-104.949911',
                      'location': 'E 35TH AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '476459',
                      'time': '11:28:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765698',
                      'lng': '-104.949911',
                      'location': '3200-BLK E 35TH AVE',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '476465',
                      'time': '22:53:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.765724',
                      'lng': '-104.958565',
                      'location': 'E 35TH AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '476589',
                      'time': '01:08:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765698',
                      'lng': '-104.949911',
                      'location': 'N STEELE ST / E 35TH AVE',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '476889',
                      'time': '17:30:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.765679',
                      'lng': '-104.940676',
                      'location': '3990 E 35TH AVE',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '477622',
                      'time': '09:30:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.765727',
                      'lng': '-104.948717',
                      'location': 'E 35TH AVE / N ADAMS ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '477789',
                      'time': '09:26:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.765709',
                      'lng': '-104.941712',
                      'location': '3900 E 35TH AVE',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '478057',
                      'time': '06:29:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.76812',
                      'lng': '-104.954833',
                      'location': 'E 37TH AVE / N CLAYTON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '478242',
                      'time': '15:20:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.764461',
                      'lng': '-104.942841',
                      'location': 'E BRUCE RANDOLPH AVE / N JACKSON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '478276',
                      'time': '00:50:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764466',
                      'lng': '-104.943793',
                      'location': 'E BRUCE RANDOLPH AVE / N GARFIELD ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '478312',
                      'time': '15:38:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.764459',
                      'lng': '-104.941717',
                      'location': 'E BRUCE RANDOLPH AVE / N HARRISON ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '478352',
                      'time': '01:30:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made,T - Citation Issue',
                      'district': '2',
                      'lat': '39.764459',
                      'lng': '-104.941717',
                      'location': 'E BRUCE RANDOLPH AVE / N HARRISON ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '478356',
                      'time': '12:02:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.764459',
                      'lng': '-104.941717',
                      'location': 'E BRUCE RANDOLPH AVE / N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '478396',
                      'time': '12:17:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764466',
                      'lng': '-104.943793',
                      'location': 'E BRUCE RANDOLPH AVE / N GARFIELD ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '478731',
                      'time': '22:10:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764466',
                      'lng': '-104.943793',
                      'location': 'E BRUCE RANDOLPH AVE / N GARFIELD ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '478736',
                      'time': '15:23:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': 'E BRUCE RANDOLPH AVE / N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '478740',
                      'time': '22:30:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.94057',
                      'location': 'E BRUCE RANDOLPH AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '478741',
                      'time': '15:29:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764459',
                      'lng': '-104.941717',
                      'location': '3400-BLK-COLORADO N HARRISON ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '478840',
                      'time': '02:22:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.766925',
                      'lng': '-104.953641',
                      'location': '3600-BLK N FILLMORE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '480487',
                      'time': '14:30:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.768115',
                      'lng': '-104.949907',
                      'location': '3700-BLK N STEELE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '485094',
                      'time': '15:04:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.768093',
                      'lng': '-104.941707',
                      'location': 'E 37TH AVE / N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '485587',
                      'time': '20:21:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.768098',
                      'lng': '-104.943999',
                      'location': 'E 37TH AVE / N GARFIELD ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '485733',
                      'time': '01:02:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766958',
                      'lng': '-104.959745',
                      'location': '3600-BLK N YORK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '488290',
                      'time': '15:05:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766958',
                      'lng': '-104.959745',
                      'location': 'E 36TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '488292',
                      'time': '17:25:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.770563',
                      'lng': '-104.941693',
                      'location': '3900 N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '492687',
                      'time': '22:29:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.771064',
                      'lng': '-104.947555',
                      'location': '3900 N COOK ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '493634',
                      'time': '04:19:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.771075',
                      'lng': '-104.94989',
                      'location': 'E 39TH AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '493876',
                      'time': '22:36:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.769185',
                      'lng': '-104.941703',
                      'location': '3800 N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '494453',
                      'time': '15:26:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772302',
                      'lng': '-104.97455',
                      'location': '38TH ST / WYNKOOP ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '500651',
                      'time': '03:07:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772302',
                      'lng': '-104.97455',
                      'location': '38TH ST / WYNKOOP ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '500739',
                      'time': '14:44:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772302',
                      'lng': '-104.97455',
                      'location': '38TH ST / WYNKOOP ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '500771',
                      'time': '11:32:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.772302',
                      'lng': '-104.97455',
                      'location': '38TH ST / WYNKOOP ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '500997',
                      'time': '14:14:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.772302',
                      'lng': '-104.97455',
                      'location': '38TH ST / WYNKOOP ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '501047',
                      'time': '23:10:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772903',
                      'lng': '-104.950845',
                      'location': 'E 40TH AVE / N ST PAUL ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '501193',
                      'time': '23:50:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.772614',
                      'lng': '-104.947543',
                      'location': '3984 N COOK ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '501309',
                      'time': '15:09:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.772899',
                      'lng': '-104.964705',
                      'location': 'E 40TH AVE / N HIGH ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '502875',
                      'time': '16:51:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.772915',
                      'lng': '-104.95717',
                      'location': '4000 N COLUMBINE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '502898',
                      'time': '15:55:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.772898',
                      'lng': '-104.9635',
                      'location': 'E 40TH AVE / N RACE ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '502951',
                      'time': '00:09:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.772913',
                      'lng': '-104.955662',
                      'location': '2600 E 40TH AVE',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '502971',
                      'time': '00:18:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.772915',
                      'lng': '-104.95717',
                      'location': 'E 40TH AVE / N COLUMBINE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '503178',
                      'time': '08:24:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.772915',
                      'lng': '-104.95717',
                      'location': 'E 40TH AVE / N COLUMBINE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '503179',
                      'time': '01:29:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.772882',
                      'lng': '-104.942934',
                      'location': 'E 40TH AVE / N JACKSON ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '503280',
                      'time': '21:51:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772882',
                      'lng': '-104.942934',
                      'location': 'E 40TH AVE / N JACKSON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '503323',
                      'time': '18:28:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.772882',
                      'lng': '-104.942934',
                      'location': 'E 40TH AVE / N JACKSON ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '503546',
                      'time': '00:23:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.772882',
                      'lng': '-104.942934',
                      'location': 'E 40TH AVE / N JACKSON ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '503575',
                      'time': '00:08:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.774303',
                      'lng': '-104.97718',
                      'location': '38TH ST / CHESTNUT PL',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '504781',
                      'time': '11:26:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.772963',
                      'lng': '-104.975426',
                      'location': '38TH ST / N BRIGHTON BLVD',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '505301',
                      'time': '15:07:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772902',
                      'lng': '-104.948641',
                      'location': 'E 40TH AVE / N ADAMS ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '506259',
                      'time': '22:25:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.772089',
                      'lng': '-104.94988',
                      'location': '3955 N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '507216',
                      'time': '10:40:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.772894',
                      'lng': '-104.959401',
                      'location': '4000 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '507398',
                      'time': '13:19:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.772911',
                      'lng': '-104.968476',
                      'location': 'E 40TH AVE / N FRANKLIN ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '507435',
                      'time': '22:33:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.772911',
                      'lng': '-104.968476',
                      'location': 'E 40TH AVE / N FRANKLIN ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '507836',
                      'time': '23:10:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772894',
                      'lng': '-104.947541',
                      'location': 'E 40TH AVE / N COOK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '507928',
                      'time': '21:45:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.772894',
                      'lng': '-104.947541',
                      'location': 'E 40TH AVE / N COOK ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '507936',
                      'time': '14:37:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.772905',
                      'lng': '-104.949824',
                      'location': '4000 N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '508397',
                      'time': '22:48:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.773077',
                      'lng': '-104.973554',
                      'location': '3900 WYNKOOP ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '508512',
                      'time': '19:24:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772913',
                      'lng': '-104.958261',
                      'location': 'E 40TH AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '510364',
                      'time': '10:35:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.772913',
                      'lng': '-104.958261',
                      'location': 'E 40TH AVE / N JOSEPHINE ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '510366',
                      'time': '13:16:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.775133',
                      'lng': '-104.954145',
                      'location': '4200-BLK N CLAYTON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '510648',
                      'time': '08:17:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.772913',
                      'lng': '-104.958261',
                      'location': 'E 40TH AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '512948',
                      'time': '18:33:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.772913',
                      'lng': '-104.958261',
                      'location': 'E 40TH AVE / N JOSEPHINE ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '513240',
                      'time': '16:15:21',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.773854',
                      'lng': '-104.942921',
                      'location': 'E 41ST AVE / N JACKSON ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '514236',
                      'time': '17:59:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.774971',
                      'lng': '-104.978046',
                      'location': '38TH ST / ARKINS CT',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '514984',
                      'time': '08:04:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.775025',
                      'lng': '-104.958251',
                      'location': '4200-BLK N JOSEPHINE ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '519643',
                      'time': '01:14:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.775127',
                      'lng': '-104.949798',
                      'location': 'E 42ND AVE / N STEELE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '519709',
                      'time': '14:59:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Vehicle Towed',
                      'district': '2',
                      'lat': '39.775099',
                      'lng': '-104.942477',
                      'location': 'E 42ND AVE / E SMITH RD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '519741',
                      'time': '21:44:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.775127',
                      'lng': '-104.949798',
                      'location': 'E 42ND AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '520748',
                      'time': '16:15:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.775127',
                      'lng': '-104.949798',
                      'location': 'E 42ND AVE / N STEELE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '520759',
                      'time': '02:16:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.776391',
                      'lng': '-104.949797',
                      'location': '4300 N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '560501',
                      'time': '23:42:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.775764',
                      'lng': '-104.971798',
                      'location': '4120 N BRIGHTON BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '561742',
                      'time': '22:43:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.776406',
                      'lng': '-104.958243',
                      'location': 'E 43RD AVE / N JOSEPHINE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '567418',
                      'time': '22:07:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.776396',
                      'lng': '-104.948631',
                      'location': 'E 43RD AVE / N ADAMS ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '567599',
                      'time': '22:11:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.776389',
                      'lng': '-104.946414',
                      'location': '4300 N MADISON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '567662',
                      'time': '09:12:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.776408000000004',
                      'lng': '-104.954144',
                      'location': 'E 43RD AVE / N CLAYTON ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '569935',
                      'time': '15:34:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.778931',
                      'lng': '-104.954136',
                      'location': 'E 45TH AVE / N CLAYTON ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '572410',
                      'time': '00:24:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.778927',
                      'lng': '-104.949795',
                      'location': 'E 45TH AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '574898',
                      'time': '23:24:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.779884',
                      'lng': '-104.967166',
                      'location': 'I70 EB / N BRIGHTON BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '575212',
                      'time': '22:27:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.778935',
                      'lng': '-104.958236',
                      'location': '4500 N JOSEPHINE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '577956',
                      'time': '23:10:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.778927',
                      'lng': '-104.949795',
                      'location': 'E 45TH AVE / N STEELE ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '578219',
                      'time': '10:27:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.778927',
                      'lng': '-104.949795',
                      'location': 'E 45TH AVE / N STEELE ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '578276',
                      'time': '22:25:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.778917',
                      'lng': '-104.94752',
                      'location': 'E 45TH AVE / N COOK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '578719',
                      'time': '10:06:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.779884',
                      'lng': '-104.967166',
                      'location': 'I70 EB / N BRIGHTON BLVD',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '579149',
                      'time': '14:23:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.779884',
                      'lng': '-104.967166',
                      'location': 'I70 EB / N BRIGHTON BLVD',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '579150',
                      'time': '01:32:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.777659',
                      'lng': '-104.949792',
                      'location': '4400 N STEELE ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '579991',
                      'time': '00:47:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.777674',
                      'lng': '-104.958237',
                      'location': 'E 44TH AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '580422',
                      'time': '10:43:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.777659',
                      'lng': '-104.95193',
                      'location': 'E 44TH AVE / N MILWAUKEE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '580817',
                      'time': '23:35:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.777659',
                      'lng': '-104.949792',
                      'location': 'E 44TH AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '581241',
                      'time': '22:45:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.780065',
                      'lng': '-104.957152',
                      'location': 'E 46TH AVE / N COLUMBINE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '582669',
                      'time': '09:51:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.780012',
                      'lng': '-104.953029',
                      'location': '2900 E 46TH AVE',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '582740',
                      'time': '16:41:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.779969',
                      'lng': '-104.949806',
                      'location': 'I70 EB / N STEELE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '582779',
                      'time': '23:05:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.779969',
                      'lng': '-104.949806',
                      'location': 'N STEELE ST / I70 EB',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '582822',
                      'time': '15:08:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.78013',
                      'lng': '-104.966857',
                      'location': 'N BRIGHTON BLVD / I70 WB',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '583260',
                      'time': '15:48:32',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.78013',
                      'lng': '-104.966857',
                      'location': 'I70 WB / N BRIGHTON BLVD',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '583628',
                      'time': '22:15:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.78013',
                      'lng': '-104.966857',
                      'location': 'I70 WB / N BRIGHTON BLVD',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '583629',
                      'time': '10:58:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.780064',
                      'lng': '-104.969993',
                      'location': 'I70 WB / N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '583791',
                      'time': '13:27:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.78013',
                      'lng': '-104.966857',
                      'location': 'I70 WB / N BRIGHTON BLVD',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '584039',
                      'time': '13:56:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.780064',
                      'lng': '-104.956452',
                      'location': 'E 46TH AVE / N ELIZABETH ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '584125',
                      'time': '23:00:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.780447',
                      'lng': '-104.949808',
                      'location': '4600 N STEELE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '584206',
                      'time': '21:42:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.780186',
                      'lng': '-104.952797',
                      'location': '4600 N VASQUEZ BLVD',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '584266',
                      'time': '02:42:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.781016',
                      'lng': '-104.969968',
                      'location': '4655 N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '584837',
                      'time': '21:58:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.781011',
                      'lng': '-104.949783',
                      'location': '4640 N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '584938',
                      'time': '22:33:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.781247',
                      'lng': '-104.959298',
                      'location': 'N YORK ST / E ALICE PL',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '587530',
                      'time': '22:09:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.780069',
                      'lng': '-104.959321',
                      'location': 'E 46TH AVE / N YORK ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '588157',
                      'time': '07:58:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.780069',
                      'lng': '-104.959321',
                      'location': 'E 46TH AVE / N YORK ST',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '588164',
                      'time': '09:17:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.780044',
                      'lng': '-104.949811',
                      'location': 'E 46TH AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '589113',
                      'time': '10:50:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.780044',
                      'lng': '-104.949811',
                      'location': 'E 46TH AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '590462',
                      'time': '07:52:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.780044',
                      'lng': '-104.949811',
                      'location': 'E 46TH AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '590644',
                      'time': '22:44:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '2',
                      'lat': '39.780447',
                      'lng': '-104.949808',
                      'location': '4600 N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '590871',
                      'time': '00:33:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.780498',
                      'lng': '-104.969711',
                      'location': 'E 46TH AVE / N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '590985',
                      'time': '20:02:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.780825',
                      'lng': '-104.966799',
                      'location': 'E 46TH AVE / N BRIGHTON BLVD',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '591271',
                      'time': '19:53:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.780447',
                      'lng': '-104.949808',
                      'location': '4600 N STEELE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '591328',
                      'time': '01:25:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.780447',
                      'lng': '-104.949808',
                      'location': '4600 N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '591338',
                      'time': '22:47:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.787367',
                      'lng': '-104.947565',
                      'location': 'E 50TH AVE / N COOK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '592526',
                      'time': '00:16:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.787367',
                      'lng': '-104.947565',
                      'location': 'E 50TH AVE / N COOK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '592527',
                      'time': '23:59:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.787397',
                      'lng': '-104.952273',
                      'location': '5000-BLK N MILWAUKEE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '592674',
                      'time': '20:26:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.784925',
                      'lng': '-104.947579',
                      'location': 'E 49TH AVE / N COOK ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '593320',
                      'time': '23:56:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.790271',
                      'lng': '-104.959248',
                      'location': '5160 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '594345',
                      'time': '10:34:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.790271',
                      'lng': '-104.959248',
                      'location': '5160 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '594353',
                      'time': '08:37:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.78375',
                      'lng': '-104.954109',
                      'location': 'E 48TH AVE / N CLAYTON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '597101',
                      'time': '12:32:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.790832',
                      'lng': '-104.941483',
                      'location': 'E 52ND AVE / N VASQUEZ BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '597177',
                      'time': '03:04:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.789189',
                      'lng': '-104.949922',
                      'location': 'E 51ST AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '599555',
                      'time': '22:17:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.787803',
                      'lng': '-104.96424',
                      'location': 'N BRIGHTON BLVD / N RACE CT',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '600347',
                      'time': '15:30:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.785241',
                      'lng': '-104.959287',
                      'location': 'E 49TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '600393',
                      'time': '23:06:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.791135',
                      'lng': '-104.941207',
                      'location': '5200-BLK N VASQUEZ BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '600843',
                      'time': '16:41:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.784359',
                      'lng': '-104.953015',
                      'location': '4851 N FILLMORE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '601899',
                      'time': '13:36:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.781954',
                      'lng': '-104.96454',
                      'location': 'E 47TH AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '602526',
                      'time': '02:18:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.783777',
                      'lng': '-104.949818',
                      'location': 'E 48TH AVE / N STEELE ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '602546',
                      'time': '21:55:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.783753',
                      'lng': '-104.966676',
                      'location': 'E 48TH AVE / N BRIGHTON BLVD',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '603775',
                      'time': '17:35:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.781938',
                      'lng': '-104.966681',
                      'location': 'E 47TH AVE / N BRIGHTON BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '604316',
                      'time': '00:14:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.783774',
                      'lng': '-104.940519',
                      'location': 'E 48TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '604376',
                      'time': '23:26:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.781938',
                      'lng': '-104.966681',
                      'location': 'E 47TH AVE / N BRIGHTON BLVD',
                      'outcome': 'warning',
                      'precinct': '212',
                      'raw_row_number': '606453',
                      'time': '12:04:03',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.783774',
                      'lng': '-104.940519',
                      'location': 'E 48TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '606916',
                      'time': '03:22:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.78194',
                      'lng': '-104.954118',
                      'location': 'N CLAYTON ST / E 47TH AVE',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '607179',
                      'time': '15:04:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.780447',
                      'lng': '-104.949808',
                      'location': '4600-BLK N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '607287',
                      'time': '01:51:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.783817',
                      'lng': '-104.948749',
                      'location': 'E 48TH AVE / N ADAMS ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '607611',
                      'time': '23:59:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.783007',
                      'lng': '-104.948701',
                      'location': '4757 N VASQUEZ BLVD',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '607684',
                      'time': '00:16:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.781957',
                      'lng': '-104.957029',
                      'location': '4700 N COLUMBINE ST',
                      'outcome': 'citation',
                      'precinct': '212',
                      'raw_row_number': '608769',
                      'time': '23:05:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.783621',
                      'lng': '-104.964555',
                      'location': '4791 N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '609307',
                      'time': '13:40:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.781945',
                      'lng': '-104.955143',
                      'location': 'E 47TH AVE / N THOMPSON CT',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '609958',
                      'time': '09:32:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.78381',
                      'lng': '-104.947917',
                      'location': 'E 48TH AVE / N VASQUEZ BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '610011',
                      'time': '01:06:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.783782',
                      'lng': '-104.942914',
                      'location': 'E 48TH AVE / N JACKSON ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '610279',
                      'time': '04:11:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.783782',
                      'lng': '-104.942914',
                      'location': 'E 48TH AVE / N JACKSON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '610302',
                      'time': '22:56:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.781945',
                      'lng': '-104.955143',
                      'location': 'E 47TH AVE / N THOMPSON CT',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '611157',
                      'time': '00:32:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.78375',
                      'lng': '-104.954109',
                      'location': 'E 48TH AVE / N CLAYTON ST',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '611737',
                      'time': '21:34:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.78375',
                      'lng': '-104.954109',
                      'location': 'E 48TH AVE / N CLAYTON ST',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '611744',
                      'time': '09:02:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.783007',
                      'lng': '-104.948701',
                      'location': '4757 N VASQUEZ BLVD',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '612147',
                      'time': '06:46:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.78013',
                      'lng': '-104.966857',
                      'location': 'I70 WB / N BRIGHTON BLVD',
                      'outcome': 'arrest',
                      'precinct': '212',
                      'raw_row_number': '612327',
                      'time': '22:51:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.787693',
                      'lng': '-104.944334',
                      'location': '5000-BLK N VASQUEZ BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '613653',
                      'time': '08:42:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.787693',
                      'lng': '-104.944334',
                      'location': '5000 N VASQUEZ BLVD',
                      'outcome': 'NA',
                      'precinct': '212',
                      'raw_row_number': '613657',
                      'time': '01:38:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '213': [{'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.727124',
                      'lng': '-104.954392',
                      'location': 'N DETROIT ST / E 7TH AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '199817',
                      'time': '12:35:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.727119',
                      'lng': '-104.959022',
                      'location': 'E 7TH AVE / N JOSEPHINE ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '200359',
                      'time': '08:53:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.725604',
                      'lng': '-104.948401',
                      'location': 'E 6TH AVE / N ADAMS ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '201213',
                      'time': '08:10:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.725604',
                      'lng': '-104.948401',
                      'location': 'E 6TH AVE / N ADAMS ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '201217',
                      'time': '23:41:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.727119',
                      'lng': '-104.959022',
                      'location': 'N JOSEPHINE ST / E 7TH AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '202065',
                      'time': '10:54:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.725616',
                      'lng': '-104.956705',
                      'location': 'N ELIZABETH ST / E 6TH AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '205542',
                      'time': '12:19:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.72712',
                      'lng': '-104.957868',
                      'location': 'E 7TH AVE / N COLUMBINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '209431',
                      'time': '23:34:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.725612',
                      'lng': '-104.954628',
                      'location': 'E 6TH AVE / N DETROIT ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '213052',
                      'time': '08:37:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.725615',
                      'lng': '-104.957857',
                      'location': 'E 6TH AVE / N COLUMBINE ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '213288',
                      'time': '22:49:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.730316',
                      'lng': '-104.959174',
                      'location': '900-BLK N JOSEPHINE ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '220074',
                      'time': '22:49:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Z - Test',
                      'district': '2',
                      'lat': '39.731257',
                      'lng': '-104.959255',
                      'location': '950 N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '223712',
                      'time': '16:45:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.731257',
                      'lng': '-104.959255',
                      'location': '950 N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '223716',
                      'time': '15:59:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.729228',
                      'lng': '-104.940693',
                      'location': 'N COLORADO BLVD / E 8TH AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '226883',
                      'time': '23:57:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.731029',
                      'lng': '-104.940688',
                      'location': 'E 9TH AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '226896',
                      'time': '02:16:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.729131',
                      'lng': '-104.954042',
                      'location': 'E 8TH AVE / N DETROIT ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '231825',
                      'time': '09:08:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.730507',
                      'lng': '-104.951735',
                      'location': '900-BLK N MILWAUKEE ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '232846',
                      'time': '08:51:35',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.7305',
                      'lng': '-104.946186',
                      'location': 'N MADISON ST / E 9TH AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '232859',
                      'time': '00:30:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.729114',
                      'lng': '-104.959027',
                      'location': 'N JOSEPHINE ST / E 8TH AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '234017',
                      'time': '23:39:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.725608',
                      'lng': '-104.945098',
                      'location': 'N MONROE ST / E 6TH AVE',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '237273',
                      'time': '16:18:11',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.725605',
                      'lng': '-104.947381',
                      'location': '600 N COOK ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '237861',
                      'time': '09:29:59',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.727128',
                      'lng': '-104.953238',
                      'location': 'N FILLMORE ST / E 7TH AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '238111',
                      'time': '07:13:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.736802',
                      'lng': '-104.952806',
                      'location': '1300 N FILLMORE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '241319',
                      'time': '22:21:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.736759',
                      'lng': '-104.94289',
                      'location': 'E 13TH AVE / N JACKSON ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '244439',
                      'time': '01:19:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.73623',
                      'lng': '-104.940668',
                      'location': '1270 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '248165',
                      'time': '13:58:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.735105',
                      'lng': '-104.942894',
                      'location': 'E 12TH AVE / N JACKSON ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '253551',
                      'time': '13:10:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.738387',
                      'lng': '-104.957436',
                      'location': '1400 N COLUMBINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '267616',
                      'time': '08:07:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.738379',
                      'lng': '-104.954153',
                      'location': 'E 14TH AVE / N DETROIT ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '270667',
                      'time': '21:23:40',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738279',
                      'lng': '-104.940664',
                      'location': 'E 14TH AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '272449',
                      'time': '18:06:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.739516',
                      'lng': '-104.947269',
                      'location': 'E COLFAX A PL / N COOK ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '273770',
                      'time': '02:46:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.739516',
                      'lng': '-104.947269',
                      'location': 'E COLFAX A PL / N COOK ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '274337',
                      'time': '19:00:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738279',
                      'lng': '-104.940664',
                      'location': 'E 14TH AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '275147',
                      'time': '03:48:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.738279',
                      'lng': '-104.940664',
                      'location': 'E 14TH AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '275157',
                      'time': '00:38:09',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'L - Clearance',
                      'district': '2',
                      'lat': '39.738375',
                      'lng': '-104.952801',
                      'location': '1400-BLK-DETROIT N FILLMORE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '275525',
                      'time': '05:17:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.738279',
                      'lng': '-104.940664',
                      'location': '1400 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '275578',
                      'time': '02:42:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.736816',
                      'lng': '-104.957441',
                      'location': 'E 13TH AVE / N COLUMBINE ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '280806',
                      'time': '01:18:01',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.740963',
                      'lng': '-104.94066',
                      'location': '1565 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '315446',
                      'time': '04:19:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.74017',
                      'lng': '-104.951823',
                      'location': 'E COLFAX AVE / N MILWAUKEE ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '318859',
                      'time': '01:31:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Detox Van',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': 'N COLORADO BLVD / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '319297',
                      'time': '23:52:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740143',
                      'lng': '-104.94416',
                      'location': 'E COLFAX AVE / N GARFIELD ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '319520',
                      'time': '04:29:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': 'E COLFAX AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '319880',
                      'time': '22:26:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': 'E COLFAX AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '320154',
                      'time': '16:44:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.74019',
                      'lng': '-104.95627',
                      'location': 'E COLFAX AVE / N ELIZABETH ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '321218',
                      'time': '00:24:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.948369',
                      'location': 'E COLFAX AVE / N ADAMS ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '321253',
                      'time': '01:53:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740142',
                      'lng': '-104.94305',
                      'location': 'N JACKSON ST / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '321950',
                      'time': '11:12:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': '1 - Alarm RP On Scene',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.948369',
                      'location': 'N ADAMS ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '322409',
                      'time': '02:13:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.948369',
                      'location': 'E COLFAX AVE / N ADAMS ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '322422',
                      'time': '07:41:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': 'E COLFAX AVE / N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '322502',
                      'time': '01:45:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.740996',
                      'lng': '-104.954784',
                      'location': '1545 N DETROIT ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '323310',
                      'time': '13:25:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740143',
                      'lng': '-104.94416',
                      'location': 'E COLFAX AVE / N GARFIELD ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '323926',
                      'time': '17:26:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': 'E COLFAX AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '324228',
                      'time': '15:36:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740151',
                      'lng': '-104.945366',
                      'location': '3600 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '324283',
                      'time': '11:03:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': 'N COLORADO BLVD / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '324450',
                      'time': '12:31:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740134',
                      'lng': '-104.941871',
                      'location': '1500 N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '324549',
                      'time': '21:01:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740119',
                      'lng': '-104.958797',
                      'location': '2400 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '324698',
                      'time': '01:16:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': '1500 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '325127',
                      'time': '17:07:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740148',
                      'lng': '-104.946165',
                      'location': 'E COLFAX AVE / N MADISON ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '325202',
                      'time': '16:55:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740185',
                      'lng': '-104.954794',
                      'location': 'E COLFAX AVE / N DETROIT ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '325868',
                      'time': '22:50:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740208',
                      'lng': '-104.940664',
                      'location': '1504 N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '326152',
                      'time': '22:20:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': 'E COLFAX AVE / N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '326381',
                      'time': '10:09:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740208',
                      'lng': '-104.940664',
                      'location': '1504 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '326722',
                      'time': '23:00:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740148',
                      'lng': '-104.946165',
                      'location': 'N MADISON ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '327033',
                      'time': '15:34:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740151',
                      'lng': '-104.945366',
                      'location': 'E COLFAX AVE / N MONROE ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '327051',
                      'time': '23:09:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740174',
                      'lng': '-104.952264',
                      'location': '3015 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '327202',
                      'time': '02:39:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'File Only',
                      'district': '2',
                      'lat': '39.740174',
                      'lng': '-104.952264',
                      'location': '3015 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '327205',
                      'time': '22:48:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740175',
                      'lng': '-104.952446',
                      'location': 'E COLFAX AVE / N MILWAUKEE ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '327373',
                      'time': '22:49:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740174',
                      'lng': '-104.952264',
                      'location': '3015 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '327694',
                      'time': '19:35:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740165',
                      'lng': '-104.950331',
                      'location': '3177 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '327777',
                      'time': '03:51:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'CIT Report',
                      'district': '2',
                      'lat': '39.740119',
                      'lng': '-104.958797',
                      'location': 'E COLFAX AVE / N JOSEPHINE ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '328101',
                      'time': '13:53:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740151',
                      'lng': '-104.945366',
                      'location': 'E COLFAX AVE / N MONROE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '328322',
                      'time': '22:11:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740151',
                      'lng': '-104.945366',
                      'location': 'E COLFAX AVE / N MONROE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '328456',
                      'time': '23:02:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740176',
                      'lng': '-104.952988',
                      'location': '2900 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '329121',
                      'time': '03:39:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740119',
                      'lng': '-104.958797',
                      'location': 'N JOSEPHINE ST / E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '329659',
                      'time': '15:22:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740142',
                      'lng': '-104.94305',
                      'location': 'N JACKSON ST / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '330162',
                      'time': '01:04:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740196',
                      'lng': '-104.957428',
                      'location': 'E COLFAX AVE / N COLUMBINE ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '330299',
                      'time': '23:29:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.740134',
                      'lng': '-104.941871',
                      'location': '1500-Blk N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '330372',
                      'time': '16:40:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'GOA',
                      'district': '2',
                      'lat': '39.740119',
                      'lng': '-104.958797',
                      'location': 'E COLFAX AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '330828',
                      'time': '14:54:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740165',
                      'lng': '-104.950651',
                      'location': '3100 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '330899',
                      'time': '03:28:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740196',
                      'lng': '-104.957428',
                      'location': 'N COLUMBINE ST / E COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '331465',
                      'time': '17:25:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740134',
                      'lng': '-104.941871',
                      'location': '1500 N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '331559',
                      'time': '23:56:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740119',
                      'lng': '-104.958797',
                      'location': 'N JOSEPHINE ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '332004',
                      'time': '11:18:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740134',
                      'lng': '-104.941871',
                      'location': 'N HARRISON ST / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '332165',
                      'time': '17:47:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.740119',
                      'lng': '-104.958797',
                      'location': 'E COLFAX AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '332308',
                      'time': '14:37:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740143',
                      'lng': '-104.94416',
                      'location': 'E COLFAX AVE / N GARFIELD ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '332720',
                      'time': '22:09:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': 'E COLFAX AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '332786',
                      'time': '17:30:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.74017',
                      'lng': '-104.95127599999999',
                      'location': 'E COLFAX AVE / N ST PAUL ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '333285',
                      'time': '23:19:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740129',
                      'lng': '-104.940664',
                      'location': 'E COLFAX AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '333359',
                      'time': '11:43:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740119',
                      'lng': '-104.958797',
                      'location': 'E COLFAX AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '333461',
                      'time': '11:29:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.741611',
                      'lng': '-104.956849',
                      'location': '1600 N ESPLANADE PKWY',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '333762',
                      'time': '20:39:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.743795',
                      'lng': '-104.951262',
                      'location': 'E 17TH AVE / N ST PAUL ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '334233',
                      'time': '04:27:57',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.743794',
                      'lng': '-104.950051',
                      'location': 'E 17TH AVE / N STEELE ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '336244',
                      'time': '01:17:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.743811',
                      'lng': '-104.954774',
                      'location': 'E 17TH AVE / N DETROIT ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '336460',
                      'time': '13:21:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.7434',
                      'lng': '-104.940651',
                      'location': 'E 17TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '336683',
                      'time': '00:58:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.7434',
                      'lng': '-104.940651',
                      'location': '4000 E 17TH AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '336693',
                      'time': '23:26:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.743811',
                      'lng': '-104.954774',
                      'location': 'E 17TH AVE / N DETROIT ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '337026',
                      'time': '20:39:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.743462',
                      'lng': '-104.959172',
                      'location': '1700 N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '337726',
                      'time': '18:00:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.741956',
                      'lng': '-104.944201',
                      'location': '1600-BLK N GARFIELD ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '338942',
                      'time': '00:22:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.741941',
                      'lng': '-104.941888',
                      'location': '1600-BLK-COLORADO N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '339524',
                      'time': '23:11:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.741963',
                      'lng': '-104.946523',
                      'location': '1600-BLK N MADISON ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '339540',
                      'time': '21:27:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.742569',
                      'lng': '-104.940654',
                      'location': 'N COLORADO BLVD / E BATAVIA PL',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '341323',
                      'time': '23:13:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.742569',
                      'lng': '-104.940654',
                      'location': 'E BATAVIA PL / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '341324',
                      'time': '23:21:43',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.743462',
                      'lng': '-104.959172',
                      'location': 'E 17TH AVE / N JOSEPHINE ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '342453',
                      'time': '01:31:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.743462',
                      'lng': '-104.959172',
                      'location': '2400-BLK E 17TH AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '342461',
                      'time': '01:34:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740996',
                      'lng': '-104.954784',
                      'location': '1545 N DETROIT ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '349198',
                      'time': '08:34:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740996',
                      'lng': '-104.954784',
                      'location': '1545 N DETROIT ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '349211',
                      'time': '16:04:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740867',
                      'lng': '-104.954786',
                      'location': '1538 N DETROIT ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '351643',
                      'time': '12:56:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.741942',
                      'lng': '-104.940656',
                      'location': 'E 16TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '351903',
                      'time': '00:18:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.74378',
                      'lng': '-104.946499',
                      'location': 'E 17TH AVE / N MADISON ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '356521',
                      'time': '15:34:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.743778',
                      'lng': '-104.945352',
                      'location': 'E 17TH AVE / N MONROE ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '356667',
                      'time': '18:08:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.74378',
                      'lng': '-104.946499',
                      'location': 'E 17TH AVE / N MADISON ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '356816',
                      'time': '00:23:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.747391',
                      'lng': '-104.940635',
                      'location': 'N COLORADO BLVD / E MONTVIEW BLVD',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '360151',
                      'time': '02:22:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.746126',
                      'lng': '-104.94064',
                      'location': 'E 19TH AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '360348',
                      'time': '18:56:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.747391',
                      'lng': '-104.940635',
                      'location': 'E MONTVIEW BLVD / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '364241',
                      'time': '03:02:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.747391',
                      'lng': '-104.940635',
                      'location': 'E MONTVIEW BLVD / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '364314',
                      'time': '02:46:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.747391',
                      'lng': '-104.940635',
                      'location': 'E MONTVIEW BLVD / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '364484',
                      'time': '23:47:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.751964',
                      'lng': '-104.959768',
                      'location': '2400-BLK N YORK ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '394114',
                      'time': '21:07:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.751964',
                      'lng': '-104.959768',
                      'location': 'E 24TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '394117',
                      'time': '22:39:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.751037',
                      'lng': '-104.940621',
                      'location': 'E 23RD AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '396360',
                      'time': '03:48:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.751153',
                      'lng': '-104.949061',
                      'location': '2101 N STEELE ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '400892',
                      'time': '02:22:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.751153',
                      'lng': '-104.949061',
                      'location': 'E 23RD AVE / N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '400902',
                      'time': '01:43:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'File Only',
                      'district': '2',
                      'lat': '39.751153',
                      'lng': '-104.949061',
                      'location': '2300 N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '400905',
                      'time': '17:13:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.756529',
                      'lng': '-104.945303',
                      'location': 'E 28TH AVE / N MONROE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '401742',
                      'time': '15:42:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.754424',
                      'lng': '-104.942974',
                      'location': 'E 26TH AVE / N JACKSON ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '402849',
                      'time': '22:49:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.754424',
                      'lng': '-104.942974',
                      'location': 'E 26TH AVE / N JACKSON ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '402854',
                      'time': '22:28:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.754445',
                      'lng': '-104.951203',
                      'location': 'E 26TH AVE / N ST PAUL ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '410107',
                      'time': '23:50:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.75284',
                      'lng': '-104.940615',
                      'location': 'N COLORADO BLVD / E 25TH AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '413661',
                      'time': '21:50:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Vehicle Towed',
                      'district': '2',
                      'lat': '39.75442',
                      'lng': '-104.940608',
                      'location': 'E 26TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '416390',
                      'time': '19:52:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.756489',
                      'lng': '-104.942953',
                      'location': '2800 N JACKSON ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '423933',
                      'time': '04:44:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.756484',
                      'lng': '-104.941792',
                      'location': '2800-BLK-COLORADO N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '424275',
                      'time': '16:47:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756505',
                      'lng': '-104.940601',
                      'location': 'N COLORADO BLVD / E 28TH AVE',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '424327',
                      'time': '22:20:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.756505',
                      'lng': '-104.940601',
                      'location': 'E 28TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '424347',
                      'time': '03:33:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756505',
                      'lng': '-104.940601',
                      'location': '2800 N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '426268',
                      'time': '03:00:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.759037',
                      'lng': '-104.943718',
                      'location': '3730 E 30TH AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '427430',
                      'time': '17:59:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.759053',
                      'lng': '-104.947832',
                      'location': '3400-Blk E 30TH AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '427847',
                      'time': '19:44:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756505',
                      'lng': '-104.940601',
                      'location': 'E 28TH AVE / N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '428093',
                      'time': '02:14:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756955',
                      'lng': '-104.947655',
                      'location': 'E 28TH AVE / N COOK ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '429868',
                      'time': '01:22:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.75696',
                      'lng': '-104.952428',
                      'location': 'E 28TH AVE / N MILWAUKEE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '430250',
                      'time': '10:35:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756958',
                      'lng': '-104.946479',
                      'location': 'E 28TH AVE / N MADISON ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '430358',
                      'time': '17:54:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.757325',
                      'lng': '-104.945303',
                      'location': '2840 N MONROE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '430809',
                      'time': '20:04:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'GOA',
                      'district': '2',
                      'lat': '39.757564',
                      'lng': '-104.940596',
                      'location': '2859 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '431326',
                      'time': '10:31:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758076',
                      'lng': '-104.940594',
                      'location': '2887 N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '431716',
                      'time': '22:25:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.755703',
                      'lng': '-104.945306',
                      'location': 'E 27TH AVE / N MONROE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '433879',
                      'time': '22:32:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.755966',
                      'lng': '-104.940602',
                      'location': 'N COLORADO BLVD / N HADDON RD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '433974',
                      'time': '07:00:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758192',
                      'lng': '-104.94179',
                      'location': 'E 29TH AVE / N HARRISON ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '434033',
                      'time': '19:45:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.756979',
                      'lng': '-104.959765',
                      'location': 'N YORK ST / E 28TH AVE',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '437445',
                      'time': '22:01:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.756979',
                      'lng': '-104.959765',
                      'location': '2800 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '437446',
                      'time': '02:00:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756971',
                      'lng': '-104.958573',
                      'location': '2800-BLK N JOSEPHINE ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '437870',
                      'time': '00:34:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.756979',
                      'lng': '-104.959765',
                      'location': 'E 28TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '437988',
                      'time': '14:31:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.76073',
                      'lng': '-104.956115',
                      'location': '3100 N ELIZABETH ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '438587',
                      'time': '01:22:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758224',
                      'lng': '-104.949921',
                      'location': '3200 E 29TH AVE',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '441270',
                      'time': '00:56:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.758221',
                      'lng': '-104.95734',
                      'location': 'E 29TH AVE / N COLUMBINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '441518',
                      'time': '04:32:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.758227',
                      'lng': '-104.958582',
                      'location': 'E 29TH AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '441570',
                      'time': '20:10:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.758197',
                      'lng': '-104.942954',
                      'location': '3800-BLK E 29TH AVE',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '441794',
                      'time': '23:13:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.76073',
                      'lng': '-104.954883',
                      'location': '3100 N CLAYTON ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '442401',
                      'time': '22:44:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.760727',
                      'lng': '-104.949916',
                      'location': 'E 31ST AVE / N STEELE ST',
                      'outcome': 'arrest',
                      'precinct': '213',
                      'raw_row_number': '443057',
                      'time': '23:51:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.760733',
                      'lng': '-104.958571',
                      'location': 'E 31ST AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '446764',
                      'time': '22:29:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.760733',
                      'lng': '-104.958571',
                      'location': 'E 31ST AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '446782',
                      'time': '16:10:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.75948',
                      'lng': '-104.952419',
                      'location': 'E 30TH AVE / N MILWAUKEE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '446892',
                      'time': '12:29:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.759553',
                      'lng': '-104.940588',
                      'location': '3000 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '448086',
                      'time': '23:29:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.760741',
                      'lng': '-104.958001',
                      'location': 'E 31ST AVE / E 31ST DR',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '449301',
                      'time': '17:14:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.760739',
                      'lng': '-104.957324',
                      'location': 'E 31ST AVE / N COLUMBINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '449309',
                      'time': '01:21:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.760739',
                      'lng': '-104.957324',
                      'location': 'E 31ST AVE / N COLUMBINE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '449310',
                      'time': '00:27:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.76073',
                      'lng': '-104.953648',
                      'location': 'E 31ST AVE / N FILLMORE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '449668',
                      'time': '01:30:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.760077',
                      'lng': '-104.948839',
                      'location': 'E 30TH AVE / N ADAMS ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '451195',
                      'time': '20:42:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.76073',
                      'lng': '-104.954883',
                      'location': '3100 N CLAYTON ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '452023',
                      'time': '23:12:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.761842',
                      'lng': '-104.952415',
                      'location': 'E MLK BLVD / N MILWAUKEE ST',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '457948',
                      'time': '22:10:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761842',
                      'lng': '-104.952415',
                      'location': 'E MLK BLVD / N MILWAUKEE ST',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '457959',
                      'time': '22:20:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761753',
                      'lng': '-104.94589',
                      'location': 'E MLK BLVD / N MADISON ST',
                      'outcome': 'warning',
                      'precinct': '213',
                      'raw_row_number': '463606',
                      'time': '03:33:16',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761706',
                      'lng': '-104.941662',
                      'location': '3900 E MLK BLVD',
                      'outcome': 'NA',
                      'precinct': '213',
                      'raw_row_number': '464531',
                      'time': '22:04:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761706',
                      'lng': '-104.941662',
                      'location': '3900-BLK E MLK BLVD',
                      'outcome': 'citation',
                      'precinct': '213',
                      'raw_row_number': '464539',
                      'time': '11:13:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '221': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.756495',
                      'lng': '-104.933913',
                      'location': '2800 N CHERRY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '401929',
                      'time': '08:45:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.756588',
                      'lng': '-104.91401',
                      'location': 'E 28TH AVE / N LOCUST ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '403737',
                      'time': '18:24:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.756555',
                      'lng': '-104.929398',
                      'location': 'E 28TH AVE / N ELM ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '423787',
                      'time': '14:01:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756559',
                      'lng': '-104.928238',
                      'location': '2800-BLK N FAIRFAX ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '424239',
                      'time': '16:43:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756559',
                      'lng': '-104.928238',
                      'location': '2800 N FAIRFAX ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '424257',
                      'time': '11:40:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.756559',
                      'lng': '-104.928238',
                      'location': 'E 28TH AVE / N FAIRFAX ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '424261',
                      'time': '19:47:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756559',
                      'lng': '-104.928238',
                      'location': 'E 28TH AVE / N FAIRFAX ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '424348',
                      'time': '13:10:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.756586',
                      'lng': '-104.912357',
                      'location': '2800-BLK N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '424384',
                      'time': '14:59:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.756559',
                      'lng': '-104.928238',
                      'location': '2800-BLK N FAIRFAX ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '424609',
                      'time': '13:43:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.756559',
                      'lng': '-104.928238',
                      'location': '2800 N FAIRFAX ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '424625',
                      'time': '06:52:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.756559',
                      'lng': '-104.928238',
                      'location': '2800-BLK N FAIRFAX ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '424627',
                      'time': '20:39:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.756559',
                      'lng': '-104.928238',
                      'location': '2800 N FAIRFAX ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '426587',
                      'time': '10:30:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.758309',
                      'lng': '-104.931718',
                      'location': 'E 29TH AVE / N DAHLIA ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '427089',
                      'time': '13:50:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.756568',
                      'lng': '-104.923457',
                      'location': '2800-BLK N HUDSON ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '428187',
                      'time': '20:27:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.756559',
                      'lng': '-104.928238',
                      'location': 'E 28TH AVE / N FAIRFAX ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '428565',
                      'time': '10:03:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.756565',
                      'lng': '-104.924615',
                      'location': 'E 28TH AVE / N GRAPE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '428621',
                      'time': '20:02:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.756569',
                      'lng': '-104.92229',
                      'location': '2800-BLK N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '428647',
                      'time': '11:15:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.756579',
                      'lng': '-104.917565',
                      'location': '2800 N KEARNEY ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '428725',
                      'time': '02:41:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758015',
                      'lng': '-104.903394',
                      'location': 'E 29TH AVE / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '433769',
                      'time': '10:28:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758015',
                      'lng': '-104.903394',
                      'location': 'N QUEBEC ST / E 29TH AVE',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '434072',
                      'time': '06:30:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.758295',
                      'lng': '-104.940593',
                      'location': 'E 29TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '434470',
                      'time': '23:03:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758301',
                      'lng': '-104.937214',
                      'location': 'E 29TH AVE / N BELLAIRE ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '434635',
                      'time': '22:40:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.758377',
                      'lng': '-104.915189',
                      'location': '2900 N LEYDEN ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '434643',
                      'time': '21:18:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758369',
                      'lng': '-104.929397',
                      'location': '2900-BLK N ELM ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '434786',
                      'time': '07:58:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.758374',
                      'lng': '-104.922291',
                      'location': '2900-BLK N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '434938',
                      'time': '14:31:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.758646',
                      'lng': '-104.927006',
                      'location': '2916 N FOREST ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '435374',
                      'time': '09:17:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.760176',
                      'lng': '-104.940585',
                      'location': 'E 30TH AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '439946',
                      'time': '20:11:11',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.760186',
                      'lng': '-104.927002',
                      'location': 'E 30TH AVE / N FOREST ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '440891',
                      'time': '01:52:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.760186',
                      'lng': '-104.927002',
                      'location': '3000 N FOREST ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '440894',
                      'time': '09:47:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.760187',
                      'lng': '-104.925773',
                      'location': 'E 30TH AVE / N GLENCOE ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '440955',
                      'time': '00:04:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '2',
                      'lat': '39.760187',
                      'lng': '-104.925773',
                      'location': 'E 30TH AVE / N GLENCOE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '440956',
                      'time': '22:19:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.76022',
                      'lng': '-104.903462',
                      'location': 'E 30TH AVE / N QUEBEC ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '441412',
                      'time': '01:21:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758295',
                      'lng': '-104.940593',
                      'location': 'E 29TH AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '442049',
                      'time': '22:01:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758368',
                      'lng': '-104.927007',
                      'location': 'E 29TH AVE / N FOREST ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '442074',
                      'time': '11:06:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.758295',
                      'lng': '-104.940593',
                      'location': 'E 29TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '442094',
                      'time': '22:36:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.758295',
                      'lng': '-104.940593',
                      'location': 'E 29TH AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '442095',
                      'time': '22:25:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.761835',
                      'lng': '-104.918757',
                      'location': 'E MLK BLVD / N JASMINE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '444630',
                      'time': '21:51:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761823',
                      'lng': '-104.909408',
                      'location': 'E MLK BLVD / N NEWPORT ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '445994',
                      'time': '00:53:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.761829',
                      'lng': '-104.939406',
                      'location': 'E MLK BLVD / N ALBION ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '446396',
                      'time': '20:51:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761934',
                      'lng': '-104.922292',
                      'location': 'E MLK BLVD / N HOLLY ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '446492',
                      'time': '08:53:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761833',
                      'lng': '-104.938304',
                      'location': 'E MLK BLVD / N ASH ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '446543',
                      'time': '02:22:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761925',
                      'lng': '-104.915217',
                      'location': '3200 N LEYDEN ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '447104',
                      'time': '21:55:59',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.760195',
                      'lng': '-104.923454',
                      'location': 'E 30TH AVE / N HUDSON ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '447317',
                      'time': '10:09:11',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.760174',
                      'lng': '-104.912847',
                      'location': 'E 30TH AVE / N MONACO ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '448874',
                      'time': '07:21:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.759552',
                      'lng': '-104.929391',
                      'location': '2965 N ELM ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '449631',
                      'time': '09:48:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.760174',
                      'lng': '-104.917583',
                      'location': 'E 30TH AVE / N KEARNEY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '451286',
                      'time': '23:17:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761424',
                      'lng': '-104.903457',
                      'location': 'E MLK BLVD / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '452245',
                      'time': '08:02:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761836',
                      'lng': '-104.914061',
                      'location': 'E MLK BLVD / N LOCUST ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '452834',
                      'time': '09:43:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.763798',
                      'lng': '-104.923518',
                      'location': '5530 E 33RD AVE',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '455251',
                      'time': '14:22:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761835',
                      'lng': '-104.918757',
                      'location': 'E MLK BLVD / N JASMINE ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '455628',
                      'time': '10:18:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.763793',
                      'lng': '-104.924031',
                      'location': '3300-BLK N HUDSON ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '456934',
                      'time': '15:06:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.761841',
                      'lng': '-104.936122',
                      'location': 'E MLK BLVD / N BIRCH ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '457399',
                      'time': '16:50:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Detox Van',
                      'district': '2',
                      'lat': '39.761921',
                      'lng': '-104.931716',
                      'location': '3200-BLK N DAHLIA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '457577',
                      'time': '16:52:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761917',
                      'lng': '-104.919945',
                      'location': 'E MLK BLVD / N IVY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '458570',
                      'time': '09:30:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761921',
                      'lng': '-104.931716',
                      'location': '3200 N DAHLIA ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '458754',
                      'time': '00:42:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761892',
                      'lng': '-104.910572',
                      'location': 'N NIAGARA ST / E MLK BLVD',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '459455',
                      'time': '07:12:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761892',
                      'lng': '-104.910572',
                      'location': '3200 N NIAGARA ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '459485',
                      'time': '22:54:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.761898',
                      'lng': '-104.905797',
                      'location': 'E MLK BLVD / N PONTIAC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '460112',
                      'time': '19:05:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761906',
                      'lng': '-104.912619',
                      'location': 'E MLK BLVD / N MONACO ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '460387',
                      'time': '21:08:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.761917',
                      'lng': '-104.919945',
                      'location': 'E MLK BLVD / N IVY ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '460948',
                      'time': '03:47:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.761923',
                      'lng': '-104.925769',
                      'location': '3200-BLK N GLENCOE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '461523',
                      'time': '09:43:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.761856',
                      'lng': '-104.92461',
                      'location': 'E MLK BLVD / N GRAPE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '462352',
                      'time': '12:40:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.761794',
                      'lng': '-104.904624',
                      'location': 'E MLK BLVD / N POPLAR ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '463021',
                      'time': '16:16:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761819',
                      'lng': '-104.911729',
                      'location': 'E MLK BLVD / N MAGNOLIA ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '463081',
                      'time': '19:21:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.761914',
                      'lng': '-104.917586',
                      'location': 'E MLK BLVD / N KEARNEY ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '464236',
                      'time': '22:03:57',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.761833',
                      'lng': '-104.938304',
                      'location': 'N ASH ST / E MLK BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '464600',
                      'time': '20:50:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.763809',
                      'lng': '-104.922292',
                      'location': 'E 33RD AVE / N HOLLY ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '465039',
                      'time': '10:37:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.763837',
                      'lng': '-104.904646',
                      'location': 'E 33RD AVE / N POPLAR ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '465170',
                      'time': '14:26:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.763836',
                      'lng': '-104.903429',
                      'location': 'E 33RD AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '465231',
                      'time': '22:10:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.763813',
                      'lng': '-104.919975',
                      'location': '3300-BLK N IVY ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '465322',
                      'time': '20:47:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'No Police Needed',
                      'district': '2',
                      'lat': '39.763813',
                      'lng': '-104.919975',
                      'location': 'E 33RD AVE / N IVY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '465660',
                      'time': '15:16:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.76382',
                      'lng': '-104.918811',
                      'location': 'E 33RD AVE / N JASMINE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '466654',
                      'time': '09:59:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.763794',
                      'lng': '-104.92462',
                      'location': 'E 33RD AVE / N GRAPE ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '469424',
                      'time': '12:25:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.763789',
                      'lng': '-104.925816',
                      'location': '3300 N GLENCOE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '469564',
                      'time': '09:38:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.763911',
                      'lng': '-104.916383',
                      'location': '3310 N KRAMERIA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '470014',
                      'time': '20:10:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.765644',
                      'lng': '-104.915237',
                      'location': 'E 35TH AVE / N LEYDEN ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '471039',
                      'time': '17:05:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765638',
                      'lng': '-104.931822',
                      'location': 'E 35TH AVE / N DAHLIA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '472731',
                      'time': '16:03:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.76564',
                      'lng': '-104.93562',
                      'location': 'E 35TH AVE / N BIRCH ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '472748',
                      'time': '02:36:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.76564',
                      'lng': '-104.93562',
                      'location': 'E 35TH AVE / N BIRCH ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '472760',
                      'time': '18:58:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': '3500 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '472790',
                      'time': '10:24:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': 'E 35TH AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '472791',
                      'time': '03:54:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': 'E 35TH AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '472792',
                      'time': '03:58:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': 'E 35TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '472832',
                      'time': '11:09:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': 'E 35TH AVE / N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '472833',
                      'time': '11:40:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.765608',
                      'lng': '-104.92403',
                      'location': 'E 35TH AVE / N HUDSON ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '472935',
                      'time': '18:33:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765625',
                      'lng': '-104.91997',
                      'location': 'E 35TH AVE / N IVY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '473083',
                      'time': '16:47:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765628',
                      'lng': '-104.918815',
                      'location': 'E 35TH AVE / N JASMINE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '473121',
                      'time': '11:56:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': 'E 35TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '473201',
                      'time': '10:33:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765628',
                      'lng': '-104.918815',
                      'location': 'N JASMINE ST / E 35TH AVE',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '473399',
                      'time': '20:36:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765635',
                      'lng': '-104.917608',
                      'location': 'E 35TH AVE / N KEARNEY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '473436',
                      'time': '13:34:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.764698',
                      'lng': '-104.929373',
                      'location': 'N ELM ST / E 34TH AVE',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '473550',
                      'time': '14:20:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.765648',
                      'lng': '-104.905818',
                      'location': 'E 35TH AVE / N PONTIAC ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '473627',
                      'time': '18:28:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.765644',
                      'lng': '-104.903449',
                      'location': 'E 35TH AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '473716',
                      'time': '22:37:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.765644',
                      'lng': '-104.903449',
                      'location': 'E 35TH AVE / N QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '473719',
                      'time': '15:02:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.765633',
                      'lng': '-104.939306',
                      'location': 'E 35TH AVE / N ALBION ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '476559',
                      'time': '00:57:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': 'E 35TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '476861',
                      'time': '11:56:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': 'E 35TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '477021',
                      'time': '19:21:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.76564',
                      'lng': '-104.936842',
                      'location': 'E 35TH AVE / N BELLAIRE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '477109',
                      'time': '12:11:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': 'E 35TH AVE / N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '477322',
                      'time': '11:31:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.765671',
                      'lng': '-104.94057',
                      'location': 'E 35TH AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '477354',
                      'time': '19:31:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.765613',
                      'lng': '-104.922306',
                      'location': '3500 N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '477518',
                      'time': '12:01:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.765613',
                      'lng': '-104.922306',
                      'location': 'E 35TH AVE / N HOLLY ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '477553',
                      'time': '08:15:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.765607',
                      'lng': '-104.923448',
                      'location': '3500-BLK N HUDSON ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '477837',
                      'time': '10:42:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.76565',
                      'lng': '-104.912467',
                      'location': 'E 35TH AVE / N MONACO ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '477920',
                      'time': '07:39:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.76565',
                      'lng': '-104.908206',
                      'location': 'E 35TH AVE / N ONEIDA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '478086',
                      'time': '00:05:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.768501',
                      'lng': '-104.903512',
                      'location': '3737 N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '478163',
                      'time': '09:32:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Vehicle Towed',
                      'district': '2',
                      'lat': '39.76565',
                      'lng': '-104.9106',
                      'location': 'E 35TH AVE / N NIAGARA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '478451',
                      'time': '08:13:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764463',
                      'lng': '-104.939301',
                      'location': '3400-BLK-COLORADO N ALBION ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '478460',
                      'time': '14:56:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.764463',
                      'lng': '-104.939301',
                      'location': 'E BRUCE RANDOLPH AVE / N ALBION ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '478509',
                      'time': '11:25:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.76565',
                      'lng': '-104.908206',
                      'location': 'E 35TH AVE / N ONEIDA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '478519',
                      'time': '22:12:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764463',
                      'lng': '-104.939301',
                      'location': 'E BRUCE RANDOLPH AVE / N ALBION ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '478874',
                      'time': '18:48:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764475',
                      'lng': '-104.934395',
                      'location': 'E BRUCE RANDOLPH AVE / N CHERRY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '478899',
                      'time': '14:27:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.764472',
                      'lng': '-104.935613',
                      'location': 'E BRUCE RANDOLPH AVE / N BIRCH ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '479300',
                      'time': '15:29:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.764715',
                      'lng': '-104.922312',
                      'location': '3400-BLK N HOLLY ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '479706',
                      'time': '18:44:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.767416',
                      'lng': '-104.925772',
                      'location': '3600 N GLENCOE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '481485',
                      'time': '10:32:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'File Only',
                      'district': '2',
                      'lat': '39.767458',
                      'lng': '-104.912489',
                      'location': '3600 N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '481908',
                      'time': '18:06:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.767461',
                      'lng': '-104.903452',
                      'location': '7201 E 36TH AVE',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '482368',
                      'time': '01:31:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.767461',
                      'lng': '-104.903452',
                      'location': 'E 36TH AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '482730',
                      'time': '08:28:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.768097',
                      'lng': '-104.94055',
                      'location': 'E 37TH AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '485636',
                      'time': '21:45:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.768345',
                      'lng': '-104.93328700000001',
                      'location': '3700 N DEXTER ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '486311',
                      'time': '09:30:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.765644',
                      'lng': '-104.903449',
                      'location': 'E 35TH AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '486425',
                      'time': '15:44:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.766202',
                      'lng': '-104.905823',
                      'location': '3531 N PONTIAC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '487694',
                      'time': '09:16:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.766908',
                      'lng': '-104.940561',
                      'location': 'E 36TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '488506',
                      'time': '15:19:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.766908',
                      'lng': '-104.940561',
                      'location': '3600 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '488869',
                      'time': '02:33:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.766908',
                      'lng': '-104.940561',
                      'location': 'N COLORADO BLVD / E 36TH AVE',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '488908',
                      'time': '00:01:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.767419',
                      'lng': '-104.924611',
                      'location': '3600-BLK N GRAPE ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '489202',
                      'time': '14:16:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.767419',
                      'lng': '-104.924611',
                      'location': '3600 N GRAPE ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '489243',
                      'time': '10:25:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.767424',
                      'lng': '-104.923454',
                      'location': '3601 N HUDSON ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '489279',
                      'time': '16:51:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.767424',
                      'lng': '-104.923454',
                      'location': 'N HUDSON ST / E 36TH AVE',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '489281',
                      'time': '16:00:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.767429',
                      'lng': '-104.922292',
                      'location': 'E 36TH AVE / N HOLLY ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '489822',
                      'time': '11:54:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.767461',
                      'lng': '-104.903452',
                      'location': 'E 36TH AVE / N QUEBEC ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '490040',
                      'time': '23:04:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.767451',
                      'lng': '-104.916408',
                      'location': 'E 36TH AVE / N KRAMERIA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '490062',
                      'time': '11:58:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.767459',
                      'lng': '-104.905833',
                      'location': 'E 36TH AVE / N PONTIAC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '490139',
                      'time': '07:38:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.769276',
                      'lng': '-104.90454',
                      'location': 'E 38TH AVE / N POPLAR ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '490936',
                      'time': '02:21:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '2',
                      'lat': '39.769274',
                      'lng': '-104.905581',
                      'location': 'E 38TH AVE / N PONTIAC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '491371',
                      'time': '07:50:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.769182',
                      'lng': '-104.940546',
                      'location': 'E 38TH AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '495019',
                      'time': '23:40:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.769182',
                      'lng': '-104.940546',
                      'location': 'E 38TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '495037',
                      'time': '01:16:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.769265',
                      'lng': '-104.909795',
                      'location': '3800 N NEWPORT ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '497212',
                      'time': '02:35:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.769222',
                      'lng': '-104.928173',
                      'location': 'E 38TH AVE / N FAIRFAX ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '498393',
                      'time': '10:50:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.769256',
                      'lng': '-104.917616',
                      'location': 'E 38TH AVE / N KEARNEY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '498668',
                      'time': '14:37:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.769217',
                      'lng': '-104.930523',
                      'location': 'E 38TH AVE / N EUDORA ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '498962',
                      'time': '09:09:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.769264',
                      'lng': '-104.910627',
                      'location': 'E 38TH AVE / N NIAGARA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '499022',
                      'time': '14:42:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.769218',
                      'lng': '-104.929334',
                      'location': 'E 38TH AVE / N ELM ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '499587',
                      'time': '21:46:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.769274',
                      'lng': '-104.905581',
                      'location': '3800 N PONTIAC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '499850',
                      'time': '07:35:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'File Only',
                      'district': '2',
                      'lat': '39.77107',
                      'lng': '-104.917615',
                      'location': '6100 E 39TH AVE',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '500097',
                      'time': '23:07:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.771304',
                      'lng': '-104.922314',
                      'location': '3921 N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '500562',
                      'time': '20:49:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.77154',
                      'lng': '-104.90979',
                      'location': '3955 N NEWPORT ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '500726',
                      'time': '14:25:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.771737',
                      'lng': '-104.931744',
                      'location': 'E 39TH AVE / N DAHLIA ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '500787',
                      'time': '13:39:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.771988',
                      'lng': '-104.904544',
                      'location': '7200 E SMITH RD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '500816',
                      'time': '11:56:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.771988',
                      'lng': '-104.904544',
                      'location': 'E SMITH RD / N POPLAR ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '501110',
                      'time': '23:17:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.772663',
                      'lng': '-104.903003',
                      'location': 'E 40TH AVE / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '503406',
                      'time': '22:23:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772663',
                      'lng': '-104.903003',
                      'location': 'E 40TH AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '503681',
                      'time': '22:42:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772879',
                      'lng': '-104.940547',
                      'location': 'E 40TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '503703',
                      'time': '22:22:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.773822',
                      'lng': '-104.91761',
                      'location': 'E SMITH RD / N KEARNEY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '503730',
                      'time': '23:14:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.771056',
                      'lng': '-104.922314',
                      'location': '3900 N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '504094',
                      'time': '05:39:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.773851',
                      'lng': '-104.940545',
                      'location': '4100 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '504426',
                      'time': '23:20:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.773851',
                      'lng': '-104.940545',
                      'location': 'E 41ST AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '504500',
                      'time': '00:46:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.773863',
                      'lng': '-104.940537',
                      'location': '4101 N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '504503',
                      'time': '22:25:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.771108',
                      'lng': '-104.904553',
                      'location': 'E 39TH AVE / N POPLAR ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '504807',
                      'time': '01:35:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Z - Test',
                      'district': '2',
                      'lat': '39.771304',
                      'lng': '-104.922314',
                      'location': '3921 N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '505185',
                      'time': '10:42:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772879',
                      'lng': '-104.940547',
                      'location': 'E 40TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '507913',
                      'time': '15:20:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.772879',
                      'lng': '-104.940547',
                      'location': 'E 40TH AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '508331',
                      'time': '07:41:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.772879',
                      'lng': '-104.940547',
                      'location': '4000 E 40TH AVE',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '508348',
                      'time': '12:57:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.772879',
                      'lng': '-104.940547',
                      'location': 'E 40TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '508358',
                      'time': '00:08:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.773135',
                      'lng': '-104.912698',
                      'location': '4000 N MONACO ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '508664',
                      'time': '02:40:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.771304',
                      'lng': '-104.922314',
                      'location': '3921 N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '509932',
                      'time': '16:08:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.771304',
                      'lng': '-104.922314',
                      'location': '3921 N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '509933',
                      'time': '12:45:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.771698',
                      'lng': '-104.902992',
                      'location': 'E SMITH RD / N QUEBEC ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '510221',
                      'time': '13:45:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.771092',
                      'lng': '-104.909784',
                      'location': 'E 39TH AVE / N NEWPORT ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '510327',
                      'time': '21:56:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.771698',
                      'lng': '-104.902992',
                      'location': 'N QUEBEC ST / E SMITH RD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '510533',
                      'time': '22:23:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.771698',
                      'lng': '-104.902992',
                      'location': 'E SMITH RD / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '510540',
                      'time': '14:17:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.774627',
                      'lng': '-104.922317',
                      'location': 'N HOLLY ST / E SMITH RD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '514632',
                      'time': '23:26:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.774627',
                      'lng': '-104.922317',
                      'location': 'E SMITH RD / N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '514675',
                      'time': '22:37:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.774627',
                      'lng': '-104.922317',
                      'location': 'E SMITH RD / N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '514928',
                      'time': '03:50:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.775108',
                      'lng': '-104.922302',
                      'location': '4200-BLK N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '519825',
                      'time': '17:10:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.775108',
                      'lng': '-104.922302',
                      'location': 'E 42ND AVE / N HOLLY ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '519830',
                      'time': '21:49:35',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.775108',
                      'lng': '-104.922302',
                      'location': '4200-BLK N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '520120',
                      'time': '01:15:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.776206',
                      'lng': '-104.938027',
                      'location': 'E SMITH RD / N ALBION ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '562068',
                      'time': '20:20:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.775929',
                      'lng': '-104.931725',
                      'location': 'E SMITH RD / N DAHLIA ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '566091',
                      'time': '02:15:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.778456',
                      'lng': '-104.922293',
                      'location': 'I70 WB / N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '572282',
                      'time': '18:12:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.778324',
                      'lng': '-104.922293',
                      'location': 'I70 EB / N HOLLY ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '574496',
                      'time': '23:14:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.778324',
                      'lng': '-104.922293',
                      'location': 'I70 EB / N HOLLY ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '574536',
                      'time': '21:50:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.77872',
                      'lng': '-104.922293',
                      'location': 'E STAPLETON N DR / N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '574742',
                      'time': '03:55:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.778679',
                      'lng': '-104.912879',
                      'location': 'E STAPLETON N DR / N MONACO ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '574773',
                      'time': '03:57:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.778679',
                      'lng': '-104.912879',
                      'location': 'E STAPLETON N DR / N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '574823',
                      'time': '07:36:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.778284',
                      'lng': '-104.91288',
                      'location': 'I70 EB / N MONACO ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '576967',
                      'time': '11:16:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.778284',
                      'lng': '-104.91288',
                      'location': 'I70 EB / N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '577047',
                      'time': '07:05:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.778409',
                      'lng': '-104.912879',
                      'location': 'I70 WB / N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '580633',
                      'time': '16:55:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.777982',
                      'lng': '-104.922293',
                      'location': 'N HOLLY ST / E STAPLETON S DR',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '581149',
                      'time': '02:02:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.779953',
                      'lng': '-104.940507',
                      'location': 'I70 EB / N COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '582601',
                      'time': '22:02:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.780086',
                      'lng': '-104.940504',
                      'location': 'I70 WB / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '584188',
                      'time': '20:37:26',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.780086',
                      'lng': '-104.940504',
                      'location': 'I70 WB / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '584189',
                      'time': '11:51:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.780149',
                      'lng': '-104.931652',
                      'location': 'I70 WB / N DAHLIA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '584993',
                      'time': '02:38:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.780021',
                      'lng': '-104.931658',
                      'location': 'I70 EB / N DAHLIA ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '586618',
                      'time': '14:51:40',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.780021',
                      'lng': '-104.931658',
                      'location': 'I70 EB / N DAHLIA ST',
                      'outcome': 'citation',
                      'precinct': '221',
                      'raw_row_number': '588352',
                      'time': '23:10:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.780021',
                      'lng': '-104.931658',
                      'location': 'I70 EB / N DAHLIA ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '588386',
                      'time': '21:53:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.780021',
                      'lng': '-104.931658',
                      'location': 'I70 EB / N DAHLIA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '588388',
                      'time': '03:44:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.780021',
                      'lng': '-104.931658',
                      'location': 'I70 EB / N DAHLIA ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '588429',
                      'time': '00:10:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.781309',
                      'lng': '-104.903619',
                      'location': '4590 N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '590051',
                      'time': '01:00:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.781358',
                      'lng': '-104.903588',
                      'location': '4595 N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '590065',
                      'time': '13:51:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.779953',
                      'lng': '-104.940507',
                      'location': 'I70 EB / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '590193',
                      'time': '07:12:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.779953',
                      'lng': '-104.940507',
                      'location': 'I70 EB / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '590213',
                      'time': '05:33:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.781309',
                      'lng': '-104.903619',
                      'location': '4590 N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '591451',
                      'time': '23:06:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.781309',
                      'lng': '-104.903619',
                      'location': '4590 N QUEBEC ST',
                      'outcome': 'arrest',
                      'precinct': '221',
                      'raw_row_number': '591455',
                      'time': '00:37:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.783774',
                      'lng': '-104.920017',
                      'location': '4800 Ivy St',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '600045',
                      'time': '18:32:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.787703',
                      'lng': '-104.940364',
                      'location': '5100 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '600356',
                      'time': '22:28:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.783779',
                      'lng': '-104.927002',
                      'location': 'E 48TH AVE / N FOREST ST',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '604138',
                      'time': '17:26:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.783779',
                      'lng': '-104.927002',
                      'location': 'E 48TH AVE / N FOREST ST',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '604139',
                      'time': '20:12:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.783022',
                      'lng': '-104.911101',
                      'location': '6666 E 47TH AVE',
                      'outcome': 'NA',
                      'precinct': '221',
                      'raw_row_number': '605446',
                      'time': '23:49:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.780086',
                      'lng': '-104.940504',
                      'location': 'N COLORADO BLVD / I70 WB',
                      'outcome': 'warning',
                      'precinct': '221',
                      'raw_row_number': '607278',
                      'time': '02:46:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'}],
             '222': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.7256',
                      'lng': '-104.940691',
                      'location': '600 N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '206250',
                      'time': '02:26:40',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.733654',
                      'lng': '-104.920557',
                      'location': 'N IVY ST / E 11TH AVE',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '221038',
                      'time': '22:57:17',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.731051',
                      'lng': '-104.930457',
                      'location': 'E 9TH AVE / N EUDORA ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '226002',
                      'time': '01:53:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.729226',
                      'lng': '-104.939458',
                      'location': 'E 8TH AVE / N ALBION ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '227812',
                      'time': '23:32:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.731681',
                      'lng': '-104.913944',
                      'location': 'N LOCUST ST / E 10TH AVE',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '228119',
                      'time': '00:00:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.731681',
                      'lng': '-104.913944',
                      'location': 'E 10TH AVE / N LOCUST ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '228120',
                      'time': '00:30:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.729227',
                      'lng': '-104.940202',
                      'location': '4040 E 8TH AVE',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '229017',
                      'time': '15:05:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.729228',
                      'lng': '-104.934933',
                      'location': 'E 8TH AVE / N CLERMONT ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '229948',
                      'time': '20:35:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.72927',
                      'lng': '-104.920561',
                      'location': 'E 8TH AVE / N IVY ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '232507',
                      'time': '23:16:32',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.7256',
                      'lng': '-104.940691',
                      'location': 'E 6TH AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '236385',
                      'time': '15:33:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.734173',
                      'lng': '-104.912429',
                      'location': 'N MONACO ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '240588',
                      'time': '17:59:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.736709',
                      'lng': '-104.94067',
                      'location': 'N COLORADO BLVD / E 13TH AVE',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '241290',
                      'time': '01:12:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.736709',
                      'lng': '-104.94067',
                      'location': 'E 13TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '247878',
                      'time': '23:29:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.735114',
                      'lng': '-104.913949',
                      'location': '1200 N LOCUST ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '248642',
                      'time': '22:45:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.736496',
                      'lng': '-104.925761',
                      'location': '1300 N GLENCOE ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '249417',
                      'time': '08:45:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.734313',
                      'lng': '-104.932698',
                      'location': '1150 N CHERRY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '249592',
                      'time': '13:43:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.736488',
                      'lng': '-104.931542',
                      'location': 'E 13TH AVE / N DAHLIA ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '250000',
                      'time': '11:27:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.734684',
                      'lng': '-104.935005',
                      'location': 'E 12TH AVE / N CLERMONT ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '251305',
                      'time': '00:02:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'File Only',
                      'district': '2',
                      'lat': '39.736473',
                      'lng': '-104.937296',
                      'location': 'E 13TH AVE / N BELLAIRE ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '251366',
                      'time': '23:20:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'L - Clearance',
                      'district': '2',
                      'lat': '39.735108',
                      'lng': '-104.916153',
                      'location': 'N KRAMERIA ST / E 12TH AVE',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '252003',
                      'time': '01:50:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.734685',
                      'lng': '-104.938399',
                      'location': 'N ASH ST / E 12TH AVE',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '255459',
                      'time': '07:56:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738337',
                      'lng': '-104.915054',
                      'location': 'E 14TH AVE / N LEYDEN ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '266491',
                      'time': '20:18:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.738419',
                      'lng': '-104.912797',
                      'location': 'N MONACO ST / E 14TH AVE',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '266799',
                      'time': '01:57:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.739606',
                      'lng': '-104.920561',
                      'location': '1470 N IVY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '267586',
                      'time': '17:01:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.739606',
                      'lng': '-104.920561',
                      'location': '1470 N IVY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '267587',
                      'time': '15:59:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738337',
                      'lng': '-104.915054',
                      'location': '1400 N LEYDEN ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '267697',
                      'time': '00:26:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738299',
                      'lng': '-104.922325',
                      'location': '1400 N HOLLY ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '267968',
                      'time': '10:44:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.738299',
                      'lng': '-104.922325',
                      'location': 'E 14TH AVE / N HOLLY ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '267972',
                      'time': '02:31:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738419',
                      'lng': '-104.912797',
                      'location': 'N MONACO ST / E 14TH AVE',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '268612',
                      'time': '01:45:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'No Police Needed',
                      'district': '2',
                      'lat': '39.738333',
                      'lng': '-104.916156',
                      'location': 'N KRAMERIA ST / E 14TH AVE',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '271943',
                      'time': '23:18:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738333',
                      'lng': '-104.916156',
                      'location': 'N KRAMERIA ST / E 14TH AVE',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '272727',
                      'time': '15:18:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.738333',
                      'lng': '-104.916156',
                      'location': '6201 E 14TH AVE',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '274841',
                      'time': '12:34:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.738333',
                      'lng': '-104.916156',
                      'location': 'E 14TH AVE / N KRAMERIA ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '274849',
                      'time': '22:19:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738632',
                      'lng': '-104.912431',
                      'location': '1400 N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '275435',
                      'time': '00:12:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738632',
                      'lng': '-104.912431',
                      'location': '1400-BLK N MONACO ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '275448',
                      'time': '07:23:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.736768',
                      'lng': '-104.91395',
                      'location': 'E 13TH AVE / N LOCUST ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '278120',
                      'time': '22:35:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740147',
                      'lng': '-104.916323',
                      'location': 'E COLFAX AVE / N KRAMERIA ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '313819',
                      'time': '22:01:21',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740135',
                      'lng': '-104.93038',
                      'location': 'E COLFAX AVE / N EUDORA ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '318759',
                      'time': '01:09:22',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740151',
                      'lng': '-104.925776',
                      'location': '1500 N GLENCOE ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '319396',
                      'time': '23:24:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740147',
                      'lng': '-104.916323',
                      'location': 'E COLFAX AVE / N KRAMERIA ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '320082',
                      'time': '21:42:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740137',
                      'lng': '-104.932691',
                      'location': 'E COLFAX AVE / N DEXTER ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '321127',
                      'time': '03:59:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.74014',
                      'lng': '-104.921133',
                      'location': 'E COLFAX AVE / N IVANHOE ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '321814',
                      'time': '23:49:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740143',
                      'lng': '-104.926901',
                      'location': 'E COLFAX AVE / N FOREST ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '322364',
                      'time': '14:33:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.74014',
                      'lng': '-104.921133',
                      'location': 'E COLFAX AVE / N IVANHOE ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '322392',
                      'time': '02:05:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740151',
                      'lng': '-104.925776',
                      'location': 'E COLFAX AVE / N GLENCOE ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '322645',
                      'time': '15:29:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740151',
                      'lng': '-104.925776',
                      'location': 'E COLFAX AVE / N GLENCOE ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '322646',
                      'time': '01:08:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740135',
                      'lng': '-104.93038',
                      'location': 'E COLFAX AVE / N EUDORA ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '323194',
                      'time': '11:28:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740143',
                      'lng': '-104.920561',
                      'location': 'N IVY ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '323272',
                      'time': '01:40:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740138',
                      'lng': '-104.935003',
                      'location': 'E COLFAX AVE / N CLERMONT ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '324056',
                      'time': '23:12:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740136',
                      'lng': '-104.9298',
                      'location': 'E COLFAX AVE / N ELM ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '324079',
                      'time': '17:16:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740147',
                      'lng': '-104.915056',
                      'location': 'N LEYDEN ST / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '324586',
                      'time': '16:00:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740147',
                      'lng': '-104.915056',
                      'location': 'E COLFAX AVE / N LEYDEN ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '325151',
                      'time': '02:54:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.74015',
                      'lng': '-104.923431',
                      'location': 'E COLFAX AVE / N HUDSON ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '325226',
                      'time': '22:31:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740137',
                      'lng': '-104.933801',
                      'location': 'E COLFAX AVE / N CHERRY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '325489',
                      'time': '23:16:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740139',
                      'lng': '-104.937237',
                      'location': 'E COLFAX AVE / N BELLAIRE ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '325547',
                      'time': '22:43:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.74013',
                      'lng': '-104.938944',
                      'location': 'E COLFAX AVE / N ALBION ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '325730',
                      'time': '22:50:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740134',
                      'lng': '-104.932087',
                      'location': 'E COLFAX AVE / N DAHLIA ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '326049',
                      'time': '12:03:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.74013',
                      'lng': '-104.938944',
                      'location': 'E COLFAX AVE / N ALBION ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '326294',
                      'time': '21:07:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740138',
                      'lng': '-104.935003',
                      'location': 'E COLFAX AVE / N CLERMONT ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '326297',
                      'time': '16:59:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.917255',
                      'location': 'E COLFAX AVE / N KEARNEY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '326498',
                      'time': '18:26:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.917255',
                      'location': 'E COLFAX AVE / N KEARNEY ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '326508',
                      'time': '22:28:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.74015',
                      'lng': '-104.923431',
                      'location': '1500-BLK N HUDSON ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '326573',
                      'time': '16:05:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.74015',
                      'lng': '-104.923431',
                      'location': 'E COLFAX AVE / N HUDSON ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '326669',
                      'time': '01:06:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740143',
                      'lng': '-104.926901',
                      'location': 'E COLFAX AVE / N FOREST ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '326807',
                      'time': '23:12:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.74015',
                      'lng': '-104.923431',
                      'location': 'E COLFAX AVE / N HUDSON ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '326824',
                      'time': '02:38:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.917255',
                      'location': 'E COLFAX AVE / N KEARNEY ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '327070',
                      'time': '23:39:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.913949',
                      'location': 'E COLFAX AVE / N LOCUST ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '327089',
                      'time': '23:24:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.917255',
                      'location': 'E COLFAX AVE / N KEARNEY ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '327160',
                      'time': '00:37:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.74015',
                      'lng': '-104.923431',
                      'location': 'E COLFAX AVE / N HUDSON ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '327318',
                      'time': '01:13:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740147',
                      'lng': '-104.916323',
                      'location': '6200 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '327410',
                      'time': '10:37:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.74013',
                      'lng': '-104.938944',
                      'location': 'E COLFAX AVE / N ALBION ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '327540',
                      'time': '22:52:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.91708',
                      'location': '6160 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '327815',
                      'time': '11:39:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.913949',
                      'location': 'E COLFAX AVE / N LOCUST ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '327914',
                      'time': '00:13:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.913949',
                      'location': 'E COLFAX AVE / N LOCUST ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '327986',
                      'time': '22:43:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740145',
                      'lng': '-104.918359',
                      'location': 'E COLFAX AVE / N JASMINE ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '328069',
                      'time': '17:11:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740145',
                      'lng': '-104.918359',
                      'location': 'N JASMINE ST / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '328087',
                      'time': '23:36:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740137',
                      'lng': '-104.933801',
                      'location': 'E COLFAX AVE / N CHERRY ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '328133',
                      'time': '21:34:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740136',
                      'lng': '-104.929221',
                      'location': 'E COLFAX AVE / N ELM ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '328144',
                      'time': '23:17:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.913949',
                      'location': '6400 E COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '328416',
                      'time': '02:20:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740145',
                      'lng': '-104.918359',
                      'location': 'E COLFAX AVE / N JASMINE ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '329150',
                      'time': '23:16:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740136',
                      'lng': '-104.9298',
                      'location': 'E COLFAX AVE / N ELM ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '329625',
                      'time': '15:14:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740147',
                      'lng': '-104.915056',
                      'location': 'E COLFAX AVE / N LEYDEN ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '330346',
                      'time': '21:06:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.924609',
                      'location': 'E COLFAX AVE / N GRAPE ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '331441',
                      'time': '04:25:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.74013',
                      'lng': '-104.938944',
                      'location': 'E COLFAX AVE / N ALBION ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '331621',
                      'time': '12:17:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.919457',
                      'location': 'E COLFAX AVE / N JERSEY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '332052',
                      'time': '22:42:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.919457',
                      'location': 'E COLFAX AVE / N JERSEY ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '332068',
                      'time': '12:22:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740147',
                      'lng': '-104.915056',
                      'location': 'E COLFAX AVE / N LEYDEN ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '332126',
                      'time': '06:15:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740147',
                      'lng': '-104.915056',
                      'location': 'E COLFAX AVE / N LEYDEN ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '333295',
                      'time': '19:19:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740138',
                      'lng': '-104.935003',
                      'location': 'E COLFAX AVE / N CLERMONT ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '333424',
                      'time': '21:52:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.743393',
                      'lng': '-104.938938',
                      'location': 'E 17TH AVE / N ALBION ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '336762',
                      'time': '03:04:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '2',
                      'lat': '39.743401',
                      'lng': '-104.918784',
                      'location': 'E 17TH AVE / N JASMINE ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '340452',
                      'time': '23:29:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.741923',
                      'lng': '-104.912437',
                      'location': 'E 16TH AVE / N MONACO ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '344720',
                      'time': '22:17:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.741471',
                      'lng': '-104.912436',
                      'location': '6500 E 16TH AVE',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '344918',
                      'time': '07:03:09',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.741471',
                      'lng': '-104.912436',
                      'location': '1600-BLK N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '345488',
                      'time': '01:59:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.741951',
                      'lng': '-104.929807',
                      'location': 'N ELM ST / E 16TH AVE',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '346140',
                      'time': '22:30:24',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.741924',
                      'lng': '-104.919955',
                      'location': 'E 16TH AVE / N IVY ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '347504',
                      'time': '08:00:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.741924',
                      'lng': '-104.916329',
                      'location': 'N KRAMERIA ST / E 16TH AVE',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '347580',
                      'time': '02:30:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741926',
                      'lng': '-104.915156',
                      'location': 'N LEYDEN ST / E 16TH AVE',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '353775',
                      'time': '18:48:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.743753',
                      'lng': '-104.940653',
                      'location': '1700-BLK N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '356616',
                      'time': '01:46:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.743399',
                      'lng': '-104.921128',
                      'location': 'E 17TH AVE / N IVANHOE ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '358578',
                      'time': '22:59:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.743397',
                      'lng': '-104.922275',
                      'location': 'E 17TH AVE / N HOLLY ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '358812',
                      'time': '15:25:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.747408',
                      'lng': '-104.930495',
                      'location': '2000-BLK N EUDORA ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '359582',
                      'time': '07:56:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.747418',
                      'lng': '-104.921124',
                      'location': 'E MONTVIEW BLVD / N IVANHOE ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '361099',
                      'time': '16:56:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.746123',
                      'lng': '-104.938924',
                      'location': 'E 19TH AVE / N ALBION ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '363573',
                      'time': '14:56:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.744939',
                      'lng': '-104.935501',
                      'location': 'E 18TH AVE / N CLERMONT ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '377397',
                      'time': '17:33:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.749253',
                      'lng': '-104.93504',
                      'location': 'E 22ND AVE / N CLERMONT ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '379240',
                      'time': '23:30:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.749957',
                      'lng': '-104.940625',
                      'location': '2205 N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '382601',
                      'time': '17:06:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.749277',
                      'lng': '-104.918755',
                      'location': '2200 N JASMINE ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '383774',
                      'time': '07:34:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.749275',
                      'lng': '-104.917554',
                      'location': 'E 22ND AVE / N KEARNEY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '383782',
                      'time': '18:17:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.749275',
                      'lng': '-104.917554',
                      'location': '2200 N KEARNEY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '384397',
                      'time': '18:17:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.749275',
                      'lng': '-104.917554',
                      'location': '2200-BLK N KEARNEY ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '384400',
                      'time': '18:31:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.747394',
                      'lng': '-104.939462',
                      'location': 'E MONTVIEW BLVD / N ALBION ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '387595',
                      'time': '11:42:32',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.751043',
                      'lng': '-104.938344',
                      'location': 'E 23RD AVE / N ASH ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '388775',
                      'time': '21:50:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.753408',
                      'lng': '-104.903424',
                      'location': '2500-BLK N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '389065',
                      'time': '19:13:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.751083',
                      'lng': '-104.916333',
                      'location': 'E 23RD AVE / N KRAMERIA ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '389143',
                      'time': '22:51:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.751085',
                      'lng': '-104.913988',
                      'location': 'E 23RD AVE / N LOCUST ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '390011',
                      'time': '23:29:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.751053',
                      'lng': '-104.932833',
                      'location': 'E 23RD AVE / N DEXTER ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '391656',
                      'time': '17:15:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.751941',
                      'lng': '-104.938342',
                      'location': '2400-BLK-ALBION N ASH ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '392429',
                      'time': '11:09:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.751045',
                      'lng': '-104.933934',
                      'location': 'E 23RD AVE / N CHERRY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '392815',
                      'time': '01:04:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.751013',
                      'lng': '-104.908165',
                      'location': 'E 23RD AVE / N ONEIDA ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '395505',
                      'time': '07:38:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.751017',
                      'lng': '-104.903428',
                      'location': '2300-BLK N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '397638',
                      'time': '16:56:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.751063',
                      'lng': '-104.928161',
                      'location': 'E 23RD AVE / N FAIRFAX ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '399676',
                      'time': '23:23:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.751066',
                      'lng': '-104.925786',
                      'location': 'E 23RD AVE / N GLENCOE ST',
                      'outcome': 'citation',
                      'precinct': '222',
                      'raw_row_number': '400922',
                      'time': '18:01:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.7547',
                      'lng': '-104.922293',
                      'location': '2600-BLK-IVANHOE N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '407058',
                      'time': '15:14:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.754674',
                      'lng': '-104.935023',
                      'location': '2600-BLK-BIRCH N CLERMONT ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '409758',
                      'time': '17:07:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.754674',
                      'lng': '-104.935023',
                      'location': '2600-BLK-BIRCH N CLERMONT ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '409762',
                      'time': '15:55:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.754716',
                      'lng': '-104.912436',
                      'location': '2600 N MONACO ST',
                      'outcome': 'arrest',
                      'precinct': '222',
                      'raw_row_number': '410126',
                      'time': '20:13:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.754672',
                      'lng': '-104.936124',
                      'location': '2600 N BIRCH ST',
                      'outcome': 'warning',
                      'precinct': '222',
                      'raw_row_number': '410960',
                      'time': '07:27:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.752871',
                      'lng': '-104.924627',
                      'location': 'E 25TH AVE / N GRAPE ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '411906',
                      'time': '10:54:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.752876',
                      'lng': '-104.922288',
                      'location': '2500 N HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '412940',
                      'time': '07:34:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.752893',
                      'lng': '-104.913982',
                      'location': 'E 25TH AVE / N LOCUST ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '413568',
                      'time': '01:54:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.753398',
                      'lng': '-104.912413',
                      'location': '2500-BLK N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '222',
                      'raw_row_number': '417643',
                      'time': '04:00:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '223': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.72688',
                      'lng': '-104.911634',
                      'location': 'E 7TH AVE / N MAGNOLIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '202600',
                      'time': '22:01:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.732875',
                      'lng': '-104.900977',
                      'location': '1100 N ROSLYN ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '222240',
                      'time': '09:14:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.729284',
                      'lng': '-104.904635',
                      'location': 'E 8TH AVE / N POPLAR ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '227516',
                      'time': '22:44:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.730612',
                      'lng': '-104.903465',
                      'location': '900-BLK N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '229538',
                      'time': '14:34:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.729282',
                      'lng': '-104.908152',
                      'location': '801 N ONEIDA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '231524',
                      'time': '08:55:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.730718',
                      'lng': '-104.903465',
                      'location': 'N QUEBEC ST / E 9TH AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '231946',
                      'time': '10:01:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.726881',
                      'lng': '-104.903508',
                      'location': '7295 E 7TH AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '239930',
                      'time': '22:27:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.735628',
                      'lng': '-104.901148',
                      'location': '1200 N ROSLYN ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '240606',
                      'time': '20:09:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.737276',
                      'lng': '-104.902323',
                      'location': 'E 13TH AVE / N QUINCE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '244826',
                      'time': '03:47:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735627',
                      'lng': '-104.903458',
                      'location': 'E 12TH AVE / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '245688',
                      'time': '18:35:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735627',
                      'lng': '-104.903458',
                      'location': 'N QUEBEC ST / E 12TH AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '246292',
                      'time': '01:39:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.734696',
                      'lng': '-104.903455',
                      'location': 'N QUEBEC ST / E RICHTHOFEN PL',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '249099',
                      'time': '18:14:22',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.738701',
                      'lng': '-104.903465',
                      'location': '1400 N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '265128',
                      'time': '22:12:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738701',
                      'lng': '-104.910498',
                      'location': 'E 14TH AVE / N NIAGARA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '266503',
                      'time': '19:07:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738701',
                      'lng': '-104.903465',
                      'location': 'E 14TH AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '266845',
                      'time': '18:27:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738705',
                      'lng': '-104.901151',
                      'location': '1400-BLK N ROSLYN ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '273738',
                      'time': '19:44:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738705',
                      'lng': '-104.901151',
                      'location': 'E 14TH AVE / N ROSLYN ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '273842',
                      'time': '02:19:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.738701',
                      'lng': '-104.903465',
                      'location': '1400-BLK N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '274748',
                      'time': '00:18:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.738701',
                      'lng': '-104.903465',
                      'location': '1400 N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '274771',
                      'time': '00:16:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.737269',
                      'lng': '-104.905808',
                      'location': 'N PONTIAC ST / E 13TH AVE',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '276139',
                      'time': '01:06:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.902319',
                      'location': 'E COLFAX AVE / N QUINCE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '313974',
                      'time': '14:47:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740337',
                      'lng': '-104.903455',
                      'location': '1515 N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '314964',
                      'time': '22:46:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.905797',
                      'location': 'E COLFAX AVE / N PONTIAC ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '315039',
                      'time': '23:28:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740148',
                      'lng': '-104.909356',
                      'location': 'E COLFAX AVE / N NEWPORT ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '315984',
                      'time': '02:56:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.74016',
                      'lng': '-104.906941',
                      'location': 'E COLFAX AVE / N OLIVE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '315995',
                      'time': '22:24:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740148',
                      'lng': '-104.909356',
                      'location': 'E COLFAX AVE / N NEWPORT ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '316429',
                      'time': '23:54:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.903455',
                      'location': 'E COLFAX AVE / N QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '316523',
                      'time': '22:26:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.903455',
                      'location': 'N QUEBEC ST / E COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '316599',
                      'time': '05:45:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.91243',
                      'location': 'N MONACO ST / E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '316963',
                      'time': '00:04:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.91243',
                      'location': 'E COLFAX AVE / N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '316964',
                      'time': '15:15:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.901144',
                      'location': 'E COLFAX AVE / N ROSLYN ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '317424',
                      'time': '19:19:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740153',
                      'lng': '-104.902539',
                      'location': '7380 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '319621',
                      'time': '03:01:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.902319',
                      'location': 'E COLFAX AVE / N QUINCE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '319638',
                      'time': '03:45:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.903455',
                      'location': 'N QUEBEC ST / E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '320172',
                      'time': '01:22:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.901144',
                      'location': 'E COLFAX AVE / N ROSLYN ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '321434',
                      'time': '21:03:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.9105',
                      'location': 'E COLFAX AVE / N NIAGARA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '322793',
                      'time': '17:46:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.905797',
                      'location': 'N PONTIAC ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '322821',
                      'time': '08:12:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.902319',
                      'location': 'E COLFAX AVE / N QUINCE ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '322887',
                      'time': '22:22:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.911641',
                      'location': 'E COLFAX AVE / N MAGNOLIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '323078',
                      'time': '03:03:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.9105',
                      'location': 'N NIAGARA ST / E COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '323351',
                      'time': '22:57:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.902319',
                      'location': 'E COLFAX AVE / N QUINCE ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '323507',
                      'time': '22:17:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.91243',
                      'location': 'E COLFAX AVE / N MONACO ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '332141',
                      'time': '01:06:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.742602',
                      'lng': '-104.903459',
                      'location': 'N QUEBEC ST / E BATAVIA PL',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '341341',
                      'time': '22:00:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.742602',
                      'lng': '-104.903459',
                      'location': 'N QUEBEC ST / E BATAVIA PL',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '342552',
                      'time': '21:46:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.74016',
                      'lng': '-104.906941',
                      'location': 'E COLFAX AVE / N OLIVE ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '343852',
                      'time': '17:20:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.74016',
                      'lng': '-104.906941',
                      'location': 'E COLFAX AVE / N OLIVE ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '343870',
                      'time': '22:20:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740159',
                      'lng': '-104.904653',
                      'location': 'E COLFAX AVE / N POPLAR ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '343924',
                      'time': '22:01:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.741473',
                      'lng': '-104.909368',
                      'location': '1600-BLK N NEWPORT ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '346299',
                      'time': '23:01:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.741978',
                      'lng': '-104.903453',
                      'location': '1600-BLK N QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '348104',
                      'time': '11:11:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741473',
                      'lng': '-104.904641',
                      'location': 'E 16TH AVE / N POPLAR ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '348354',
                      'time': '18:27:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.9105',
                      'location': '6700 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '349235',
                      'time': '08:46:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.9105',
                      'location': 'E COLFAX AVE / N NIAGARA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '349236',
                      'time': '11:50:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.9105',
                      'location': 'E COLFAX AVE / N NIAGARA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '349238',
                      'time': '12:24:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.9105',
                      'location': '6701 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '349256',
                      'time': '01:55:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.74016',
                      'lng': '-104.906941',
                      'location': 'E COLFAX AVE / N OLIVE ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '349598',
                      'time': '22:12:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.74016',
                      'lng': '-104.906941',
                      'location': 'E COLFAX AVE / N OLIVE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '349618',
                      'time': '21:27:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.74016',
                      'lng': '-104.906941',
                      'location': 'E COLFAX AVE / N OLIVE ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '349619',
                      'time': '22:31:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740149',
                      'lng': '-104.9105',
                      'location': 'E COLFAX AVE / N NIAGARA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '350454',
                      'time': '23:54:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.903455',
                      'location': 'E COLFAX AVE / N QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '350520',
                      'time': '18:26:07',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740146',
                      'lng': '-104.903455',
                      'location': 'E COLFAX AVE / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '350534',
                      'time': '22:17:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.901144',
                      'location': 'E COLFAX AVE / N ROSLYN ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '353045',
                      'time': '23:31:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.908157',
                      'location': 'E COLFAX AVE / N ONEIDA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '353546',
                      'time': '22:15:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740159',
                      'lng': '-104.904653',
                      'location': 'E COLFAX AVE / N POPLAR ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '353601',
                      'time': '01:29:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.745616',
                      'lng': '-104.903464',
                      'location': 'N QUEBEC ST / E 19TH AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '357041',
                      'time': '16:52:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.745618',
                      'lng': '-104.901094',
                      'location': '1900 N ROSLYN ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '357407',
                      'time': '23:59:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.745616',
                      'lng': '-104.903464',
                      'location': 'E 19TH AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '365241',
                      'time': '22:06:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.743791',
                      'lng': '-104.901094',
                      'location': '1700-BLK N ROSLYN ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '365903',
                      'time': '00:30:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.747442',
                      'lng': '-104.903448',
                      'location': 'E MONTVIEW BLVD / N QUEBEC ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '366116',
                      'time': '00:38:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.747442',
                      'lng': '-104.903448',
                      'location': 'E MONTVIEW BLVD / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '367356',
                      'time': '10:59:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.743784',
                      'lng': '-104.910505',
                      'location': 'E 17TH AVE / N NIAGARA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '372424',
                      'time': '08:10:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.743789',
                      'lng': '-104.904645',
                      'location': 'E 17TH AVE / N POPLAR ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '372520',
                      'time': '23:47:38',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.743785',
                      'lng': '-104.903455',
                      'location': 'E 17TH AVE / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '372545',
                      'time': '23:03:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.747436',
                      'lng': '-104.901072',
                      'location': 'N ROSLYN ST / N ROSLYN CIR',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '380868',
                      'time': '15:35:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.749825',
                      'lng': '-104.904644',
                      'location': '2200 N POPLAR ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '382146',
                      'time': '00:43:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.749823',
                      'lng': '-104.903423',
                      'location': 'E 22ND AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '382810',
                      'time': '22:40:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.748632',
                      'lng': '-104.903437',
                      'location': 'E 21ST AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '384916',
                      'time': '22:27:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.748632',
                      'lng': '-104.903437',
                      'location': 'N QUEBEC ST / E 21ST AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '384917',
                      'time': '20:41:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.748632',
                      'lng': '-104.903437',
                      'location': 'E 21ST AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '385544',
                      'time': '00:39:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.74982',
                      'lng': '-104.911683',
                      'location': 'E 22ND AVE / N MAGNOLIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '386227',
                      'time': '18:54:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.7387',
                      'lng': '-104.894032',
                      'location': 'E 14TH AVE / N ULSTER ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '520936',
                      'time': '22:40:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.738701',
                      'lng': '-104.895245',
                      'location': 'N TAMARAC ST / E 14TH AVE',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '521152',
                      'time': '01:40:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'File Only',
                      'district': '2',
                      'lat': '39.7387',
                      'lng': '-104.894032',
                      'location': 'N ULSTER ST / E 14TH AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '521397',
                      'time': '00:11:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.738701',
                      'lng': '-104.892865',
                      'location': 'E 14TH AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '521529',
                      'time': '03:10:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738703',
                      'lng': '-104.891691',
                      'location': '1400 N VALENTIA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '521550',
                      'time': '20:17:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.738704',
                      'lng': '-104.889382',
                      'location': 'E 14TH AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '521565',
                      'time': '01:32:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.738703',
                      'lng': '-104.890553',
                      'location': '1400 N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '521743',
                      'time': '23:38:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Detox Van',
                      'district': '2',
                      'lat': '39.738703',
                      'lng': '-104.891691',
                      'location': '1400 N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '521853',
                      'time': '01:13:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738703',
                      'lng': '-104.890553',
                      'location': 'N VERBENA ST / E 14TH AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '521981',
                      'time': '15:00:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.738704',
                      'lng': '-104.889382',
                      'location': 'E 14TH AVE / N WABASH ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '522152',
                      'time': '23:04:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.738705',
                      'lng': '-104.888179',
                      'location': 'E 14TH AVE / N WILLOW ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '522227',
                      'time': '05:49:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738705',
                      'lng': '-104.888179',
                      'location': '1400-BLK N WILLOW ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '522268',
                      'time': '16:45:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.738703',
                      'lng': '-104.890553',
                      'location': '1400-BLK N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '522335',
                      'time': '02:54:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.738704',
                      'lng': '-104.889382',
                      'location': 'E 14TH AVE / N WABASH ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '522453',
                      'time': '15:55:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.738704',
                      'lng': '-104.889382',
                      'location': '1400 N WABASH ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '522496',
                      'time': '03:28:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738704',
                      'lng': '-104.88583',
                      'location': 'E 14TH AVE / N XENIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '522620',
                      'time': '02:08:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738704',
                      'lng': '-104.88583',
                      'location': 'E 14TH AVE / N XENIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '522751',
                      'time': '16:24:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.739579',
                      'lng': '-104.885823',
                      'location': '1460 N XENIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '523272',
                      'time': '22:10:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.899991',
                      'location': 'N ROSEMARY ST / E COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '523412',
                      'time': '12:14:57',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.899991',
                      'location': 'E COLFAX AVE / N ROSEMARY ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '523413',
                      'time': '22:14:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.899991',
                      'location': 'E COLFAX AVE / N ROSEMARY ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '523451',
                      'time': '23:35:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.899991',
                      'location': 'E COLFAX AVE / N ROSEMARY ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '523487',
                      'time': '23:28:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'E COLFAX AVE / N SYRACUSE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '523616',
                      'time': '09:21:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.739309',
                      'lng': '-104.892862',
                      'location': '1442 N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '523623',
                      'time': '00:40:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': '1500 N SYRACUSE ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '523649',
                      'time': '02:50:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'E COLFAX AVE / N SYRACUSE ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '523681',
                      'time': '23:01:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.899991',
                      'location': 'N ROSEMARY ST / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '523936',
                      'time': '10:54:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'N SYRACUSE ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '524076',
                      'time': '13:59:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'E COLFAX AVE / N SYRACUSE ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '524141',
                      'time': '15:45:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.897558',
                      'location': 'E COLFAX AVE / N SPRUCE ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '524208',
                      'time': '22:09:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.897558',
                      'location': 'E COLFAX AVE / N SPRUCE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '524248',
                      'time': '16:22:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'E COLFAX AVE / N SYRACUSE ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '524331',
                      'time': '21:59:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'E COLFAX AVE / N SYRACUSE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '524419',
                      'time': '23:23:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.897558',
                      'location': 'E COLFAX AVE / N SPRUCE ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '524444',
                      'time': '02:46:45',
                      'type': 'pedestrian',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.897558',
                      'location': 'E COLFAX AVE / N SPRUCE ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '524775',
                      'time': '23:19:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.89642',
                      'location': 'E COLFAX AVE / N TRENTON ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '525008',
                      'time': '00:57:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.89642',
                      'location': 'E COLFAX AVE / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '525082',
                      'time': '21:26:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.732872',
                      'lng': '-104.898746',
                      'location': 'E 11TH AVE / N SYRACUSE ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '525579',
                      'time': '00:10:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.732866',
                      'lng': '-104.89687',
                      'location': 'E 11TH AVE / N SPRUCE ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '525632',
                      'time': '16:29:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.732863',
                      'lng': '-104.895981',
                      'location': 'E 11TH AVE / N SPRUCE CT',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '525639',
                      'time': '01:42:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.732855',
                      'lng': '-104.892821',
                      'location': '8200 E 11TH AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '526143',
                      'time': '22:56:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.732855',
                      'lng': '-104.890595',
                      'location': 'E 11TH AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '526254',
                      'time': '15:06:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735621',
                      'lng': '-104.896417',
                      'location': 'E 12TH AVE / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '526291',
                      'time': '13:59:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'No Police Needed',
                      'district': '2',
                      'lat': '39.735624',
                      'lng': '-104.895243',
                      'location': '8000 E 12TH AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '526364',
                      'time': '16:14:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735622',
                      'lng': '-104.894057',
                      'location': '1200-BLK N ULSTER ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '526436',
                      'time': '11:23:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735622',
                      'lng': '-104.894057',
                      'location': 'E 12TH AVE / N ULSTER ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '526449',
                      'time': '14:20:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.735631',
                      'lng': '-104.892886',
                      'location': 'E 12TH AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '526493',
                      'time': '15:09:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735631',
                      'lng': '-104.892886',
                      'location': 'N UINTA ST / E 12TH AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '526561',
                      'time': '09:20:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735633',
                      'lng': '-104.890577',
                      'location': 'E 12TH AVE / N VERBENA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '526675',
                      'time': '09:09:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735624',
                      'lng': '-104.895243',
                      'location': '8000 E 12TH AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '526817',
                      'time': '12:12:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.737274',
                      'lng': '-104.898747',
                      'location': 'E 13TH AVE / N SYRACUSE ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '527030',
                      'time': '13:09:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735633',
                      'lng': '-104.890577',
                      'location': 'E 12TH AVE / N VERBENA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '527185',
                      'time': '09:30:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.73563',
                      'lng': '-104.889404',
                      'location': '1200 N WABASH ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '527253',
                      'time': '03:27:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.737273',
                      'lng': '-104.895244',
                      'location': 'E 13TH AVE / N TAMARAC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '527319',
                      'time': '02:09:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.737274',
                      'lng': '-104.898747',
                      'location': '1300 N SYRACUSE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '527453',
                      'time': '13:10:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.737274',
                      'lng': '-104.898747',
                      'location': 'E 13TH AVE / N SYRACUSE ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '527541',
                      'time': '15:05:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.737276',
                      'lng': '-104.890564',
                      'location': '1300 N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '527634',
                      'time': '01:40:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.737276',
                      'lng': '-104.890564',
                      'location': '1300-BLK N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '527637',
                      'time': '01:15:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.737273',
                      'lng': '-104.889394',
                      'location': 'E 13TH AVE / N WABASH ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '527798',
                      'time': '21:02:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.737278',
                      'lng': '-104.885842',
                      'location': '1300 N XENIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '527949',
                      'time': '01:48:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.737453',
                      'lng': '-104.885841',
                      'location': '1313 N XENIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '528130',
                      'time': '23:48:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738706',
                      'lng': '-104.898748',
                      'location': '1400 N SYRACUSE ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '528245',
                      'time': '23:04:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.737273',
                      'lng': '-104.889394',
                      'location': '1300 N WABASH ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '528279',
                      'time': '01:07:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.737278',
                      'lng': '-104.885842',
                      'location': '1300 N XENIA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '528353',
                      'time': '21:59:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.738701',
                      'lng': '-104.895245',
                      'location': '1400 N TAMARAC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '528404',
                      'time': '00:20:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735624',
                      'lng': '-104.895243',
                      'location': 'E 12TH AVE / N TAMARAC ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '528488',
                      'time': '08:35:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.735628',
                      'lng': '-104.887025',
                      'location': '1200 N XANTHIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '528573',
                      'time': '23:30:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.735622',
                      'lng': '-104.894057',
                      'location': 'N ULSTER ST / E 12TH AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '528710',
                      'time': '12:41:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735622',
                      'lng': '-104.894057',
                      'location': 'E 12TH AVE / N ULSTER ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '528711',
                      'time': '13:45:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.737271',
                      'lng': '-104.894051',
                      'location': 'E 13TH AVE / N ULSTER ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '528750',
                      'time': '00:19:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735622',
                      'lng': '-104.894057',
                      'location': '1200 N ULSTER ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '528847',
                      'time': '11:55:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.738706',
                      'lng': '-104.898748',
                      'location': '1400 N SYRACUSE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '529075',
                      'time': '13:24:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.738704',
                      'lng': '-104.897556',
                      'location': '1400 N SPRUCE ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '529106',
                      'time': '01:56:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.737275',
                      'lng': '-104.887015',
                      'location': 'E 13TH AVE / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '529330',
                      'time': '00:22:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.738702',
                      'lng': '-104.896418',
                      'location': 'E 14TH AVE / N TRENTON ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '529352',
                      'time': '22:23:27',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.738708',
                      'lng': '-104.887005',
                      'location': '1400-BLK N XANTHIA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '529751',
                      'time': '17:04:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738704',
                      'lng': '-104.88583',
                      'location': '1400 N XENIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '529979',
                      'time': '22:57:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.899052',
                      'location': '7675 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '530071',
                      'time': '16:26:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.899052',
                      'location': '7675 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '530086',
                      'time': '18:41:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.899052',
                      'location': '7675 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '530186',
                      'time': '15:04:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'N SYRACUSE ST / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '530208',
                      'time': '14:00:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': '1500 N SYRACUSE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '530453',
                      'time': '22:40:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.899052',
                      'location': '7675 E COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '530475',
                      'time': '22:40:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.732847',
                      'lng': '-104.884709',
                      'location': 'N YOSEMITE ST / E 11TH AVE',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '530850',
                      'time': '20:15:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.732847',
                      'lng': '-104.884709',
                      'location': 'E 11TH AVE / N YOSEMITE ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '530881',
                      'time': '16:15:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.89403',
                      'location': 'E COLFAX AVE / N ULSTER ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '531104',
                      'time': '23:29:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.735622',
                      'lng': '-104.894057',
                      'location': 'E 12TH AVE / N ULSTER ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '531162',
                      'time': '08:51:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': '1500 N UINTA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '531257',
                      'time': '23:11:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '531311',
                      'time': '15:23:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': '1500-BLK N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '531446',
                      'time': '01:57:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.735622',
                      'lng': '-104.894057',
                      'location': 'N ULSTER ST / E 12TH AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '531469',
                      'time': '14:12:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '531510',
                      'time': '10:25:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'No Police Needed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '531512',
                      'time': '10:45:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '531561',
                      'time': '15:46:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': '8300 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '531641',
                      'time': '03:20:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Vehicle Towed',
                      'district': '2',
                      'lat': '39.736329',
                      'lng': '-104.896416',
                      'location': '1243 N TRENTON ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '531781',
                      'time': '08:56:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.737273',
                      'lng': '-104.892876',
                      'location': 'E 13TH AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '531809',
                      'time': '22:45:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '531852',
                      'time': '23:17:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '531982',
                      'time': '23:17:40',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '531986',
                      'time': '07:55:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '532002',
                      'time': '10:11:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': '1500 N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '532277',
                      'time': '01:07:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': '1500-BLK N VALENTIA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '532278',
                      'time': '21:19:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '532279',
                      'time': '12:56:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '532475',
                      'time': '01:13:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '532503',
                      'time': '23:40:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '532657',
                      'time': '01:38:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '532698',
                      'time': '17:42:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '532719',
                      'time': '16:14:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.738702',
                      'lng': '-104.896418',
                      'location': '1400 N TRENTON ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '532741',
                      'time': '23:04:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '533118',
                      'time': '23:05:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533198',
                      'time': '23:16:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500 N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533273',
                      'time': '01:58:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533519',
                      'time': '17:47:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'N VERBENA ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533525',
                      'time': '17:11:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533689',
                      'time': '00:10:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'No Police Needed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533690',
                      'time': '18:51:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'N VERBENA ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533756',
                      'time': '16:39:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533910',
                      'time': '18:09:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500 N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533951',
                      'time': '10:51:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500-BLK N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533953',
                      'time': '08:49:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533978',
                      'time': '01:27:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '533992',
                      'time': '23:24:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500-BLK N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '534143',
                      'time': '22:15:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500 N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '534188',
                      'time': '22:14:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'E COLFAX AVE / N SYRACUSE ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '534377',
                      'time': '05:21:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '534563',
                      'time': '16:27:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': '1500 N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '534604',
                      'time': '21:53:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.895249',
                      'location': 'E COLFAX AVE / N TAMARAC ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '534630',
                      'time': '22:34:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'E COLFAX AVE / N SYRACUSE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '534677',
                      'time': '23:03:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.898748',
                      'location': 'E COLFAX AVE / N SYRACUSE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '534686',
                      'time': '01:14:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '534789',
                      'time': '16:33:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '534792',
                      'time': '03:41:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.895249',
                      'location': 'E COLFAX AVE / N TAMARAC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '535082',
                      'time': '04:05:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed,Par',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.895249',
                      'location': '1500 N TAMARAC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '535124',
                      'time': '10:42:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.895249',
                      'location': '1500-BLK N TAMARAC ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '535168',
                      'time': '01:07:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.895249',
                      'location': 'E COLFAX AVE / N TAMARAC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '535198',
                      'time': '09:39:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.895249',
                      'location': 'E COLFAX AVE / N TAMARAC ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '535199',
                      'time': '00:59:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.89642',
                      'location': 'E COLFAX AVE / N TRENTON ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '535316',
                      'time': '22:09:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.89642',
                      'location': 'E COLFAX AVE / N TRENTON ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '535317',
                      'time': '01:10:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.895249',
                      'location': 'E COLFAX AVE / N TAMARAC ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '535341',
                      'time': '01:40:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.89403',
                      'location': 'N ULSTER ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '535452',
                      'time': '19:28:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.89642',
                      'location': '1500 N TRENTON ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '535542',
                      'time': '23:20:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '535798',
                      'time': '23:07:57',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '536009',
                      'time': '01:22:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '536010',
                      'time': '23:13:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '536296',
                      'time': '03:40:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.891969',
                      'location': '8275 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '536427',
                      'time': '23:46:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '536583',
                      'time': '00:20:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '536631',
                      'time': '16:28:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.891969',
                      'location': '8275 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '536780',
                      'time': '22:20:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': '8300 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '536795',
                      'time': '02:23:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '536827',
                      'time': '00:44:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.891969',
                      'location': '8275 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '536843',
                      'time': '22:46:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '536957',
                      'time': '10:07:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '536960',
                      'time': '22:54:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': '8300-BLK E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '537004',
                      'time': '03:12:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '537043',
                      'time': '22:48:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '537420',
                      'time': '22:43:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '537422',
                      'time': '20:27:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '537616',
                      'time': '17:40:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500-BLK N VERBENA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '537685',
                      'time': '20:07:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '537686',
                      'time': '00:56:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500 N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '538209',
                      'time': '16:51:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'N VERBENA ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '538286',
                      'time': '21:11:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '538343',
                      'time': '21:49:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500-BLK N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '538345',
                      'time': '15:56:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500 N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '538393',
                      'time': '04:19:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500 N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '538515',
                      'time': '07:50:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': 'E COLFAX AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '538516',
                      'time': '08:10:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500-BLK N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '538622',
                      'time': '14:41:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500-BLK N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '538900',
                      'time': '19:20:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '538918',
                      'time': '22:22:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500 N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '538969',
                      'time': '00:47:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '8400 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '539030',
                      'time': '16:24:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539171',
                      'time': '21:50:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'N WABASH ST / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '539172',
                      'time': '21:38:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539188',
                      'time': '21:45:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '539189',
                      'time': '05:07:38',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539205',
                      'time': '17:48:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539256',
                      'time': '18:05:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.89642',
                      'location': 'E COLFAX AVE / N TRENTON ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539548',
                      'time': '15:54:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.89642',
                      'location': 'E COLFAX AVE / N TRENTON ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539585',
                      'time': '19:53:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.89642',
                      'location': 'N TRENTON ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539631',
                      'time': '17:27:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539702',
                      'time': '23:18:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'No Police Needed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.88937',
                      'location': 'E COLFAX AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539704',
                      'time': '12:54:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.895249',
                      'location': 'E COLFAX AVE / N TAMARAC ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '539902',
                      'time': '14:09:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740158',
                      'lng': '-104.895249',
                      'location': 'N TAMARAC ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '540132',
                      'time': '23:41:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.89403',
                      'location': 'E COLFAX AVE / N ULSTER ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '540261',
                      'time': '01:06:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.89403',
                      'location': 'E COLFAX AVE / N ULSTER ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '540268',
                      'time': '23:38:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.89403',
                      'location': 'E COLFAX AVE / N ULSTER ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '540478',
                      'time': '21:34:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': '8200 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '540508',
                      'time': '19:29:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': '8200 E COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '540728',
                      'time': '22:17:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': '1500 N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '540793',
                      'time': '10:17:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': '1500 N UINTA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '540827',
                      'time': '23:25:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '540917',
                      'time': '23:08:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.892859',
                      'location': 'E COLFAX AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '541067',
                      'time': '00:35:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.891969',
                      'location': '8275 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '541180',
                      'time': '01:51:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '541304',
                      'time': '22:57:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '541490',
                      'time': '00:45:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '541586',
                      'time': '03:17:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885819',
                      'location': 'E COLFAX AVE / N XENIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '541686',
                      'time': '23:38:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885819',
                      'location': 'E COLFAX AVE / N XENIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '541867',
                      'time': '22:57:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885819',
                      'location': 'E COLFAX AVE / N XENIA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '541910',
                      'time': '22:54:26',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885819',
                      'location': 'E COLFAX AVE / N XENIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '542088',
                      'time': '23:25:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885412',
                      'location': '8835 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '542235',
                      'time': '20:29:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': '8300 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '542312',
                      'time': '21:51:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.89168',
                      'location': 'E COLFAX AVE / N VALENTIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '542316',
                      'time': '14:26:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.74198',
                      'lng': '-104.892859',
                      'location': 'E 16TH AVE / N UINTA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '542731',
                      'time': '10:01:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740602',
                      'lng': '-104.89168',
                      'location': '1525 N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '542788',
                      'time': '22:07:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.74198',
                      'lng': '-104.892859',
                      'location': 'E 16TH AVE / N UINTA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '542815',
                      'time': '19:58:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.894028',
                      'location': 'E 16TH AVE / N ULSTER ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '542989',
                      'time': '12:39:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.890512',
                      'location': 'E 16TH AVE / N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '543056',
                      'time': '22:13:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.891681',
                      'location': '1600 N VALENTIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '543153',
                      'time': '01:48:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.741984',
                      'lng': '-104.889337',
                      'location': 'E 16TH AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '543171',
                      'time': '20:03:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.741984',
                      'lng': '-104.889337',
                      'location': 'E 16TH AVE / N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '543184',
                      'time': '07:38:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.891681',
                      'location': 'E 16TH AVE / N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '543211',
                      'time': '22:59:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.890512',
                      'location': '1600 N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '543321',
                      'time': '23:59:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.741988',
                      'lng': '-104.884652',
                      'location': '1600 N YOSEMITE ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '543370',
                      'time': '01:04:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.743794',
                      'lng': '-104.891687',
                      'location': '1700-BLK-UINTA N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '543662',
                      'time': '16:10:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741988',
                      'lng': '-104.884652',
                      'location': 'E 16TH AVE / N YOSEMITE ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '543678',
                      'time': '15:45:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.743792',
                      'lng': '-104.890514',
                      'location': 'E 17TH AVE / N VERBENA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '543754',
                      'time': '06:03:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.743792',
                      'lng': '-104.890514',
                      'location': 'N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '543770',
                      'time': '15:13:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.743792',
                      'lng': '-104.890514',
                      'location': 'E 17TH AVE / N VERBENA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '543782',
                      'time': '06:04:24',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.743796',
                      'lng': '-104.889349',
                      'location': 'E 17TH AVE / N WABASH ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '543811',
                      'time': '23:10:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.743796',
                      'lng': '-104.889349',
                      'location': 'E 17TH AVE / N WABASH ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '543837',
                      'time': '01:05:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.745624',
                      'lng': '-104.891679',
                      'location': '1900 N VALENTIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '544071',
                      'time': '22:17:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.745626',
                      'lng': '-104.890507',
                      'location': 'E 19TH AVE / N VERBENA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '544104',
                      'time': '12:24:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.745628',
                      'lng': '-104.889335',
                      'location': '1900 N WABASH ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '544124',
                      'time': '23:48:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.743799',
                      'lng': '-104.888168',
                      'location': 'E 17TH AVE / N WILLOW ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '544203',
                      'time': '17:04:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740155',
                      'lng': '-104.890548',
                      'location': '1500-BLK N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '544254',
                      'time': '01:23:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Detox Van',
                      'district': '2',
                      'lat': '39.745626',
                      'lng': '-104.890507',
                      'location': 'E 19TH AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '544374',
                      'time': '00:22:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '544545',
                      'time': '02:51:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'N WILLOW ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '545675',
                      'time': '10:17:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '545992',
                      'time': '23:59:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740154',
                      'lng': '-104.89403',
                      'location': '8100-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '546168',
                      'time': '14:59:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '546336',
                      'time': '01:37:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '546440',
                      'time': '22:48:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885819',
                      'location': 'E COLFAX AVE / N XENIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '546568',
                      'time': '02:10:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885819',
                      'location': 'E COLFAX AVE / N XENIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '547027',
                      'time': '22:29:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741977',
                      'lng': '-104.898739',
                      'location': '1600 N SYRACUSE ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '547207',
                      'time': '20:52:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.741977',
                      'lng': '-104.897565',
                      'location': 'E 16TH AVE / N SPRUCE ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '547253',
                      'time': '23:06:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.741977',
                      'lng': '-104.897565',
                      'location': '1600-BLK N SPRUCE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '547548',
                      'time': '22:20:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.891681',
                      'location': '1600 N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '547565',
                      'time': '09:56:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741975',
                      'lng': '-104.89638',
                      'location': 'E 16TH AVE / N TRENTON ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '547626',
                      'time': '16:08:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Report Made',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.891681',
                      'location': '8300-BLK E 16TH AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '547832',
                      'time': '14:41:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.891681',
                      'location': 'E 16TH AVE / N VALENTIA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '547838',
                      'time': '22:56:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.741982',
                      'lng': '-104.88817',
                      'location': 'E 16TH AVE / N WILLOW ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '547846',
                      'time': '02:36:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed,T -',
                      'district': '2',
                      'lat': '39.741982',
                      'lng': '-104.88817',
                      'location': 'E 16TH AVE / N WILLOW ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '547852',
                      'time': '09:41:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.891681',
                      'location': '1600-BLK N VALENTIA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '547874',
                      'time': '10:59:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.885963',
                      'location': '8787 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '548076',
                      'time': '13:04:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885819',
                      'location': 'E COLFAX AVE / N XENIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '548100',
                      'time': '23:12:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '2',
                      'lat': '39.741977',
                      'lng': '-104.886993',
                      'location': 'E 16TH AVE / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '548229',
                      'time': '23:10:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.741977',
                      'lng': '-104.886993',
                      'location': 'E 16TH AVE / N XANTHIA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '548272',
                      'time': '02:44:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.743794',
                      'lng': '-104.896384',
                      'location': 'N TRENTON ST / E 17TH AVE',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '548300',
                      'time': '13:56:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.890512',
                      'location': 'E 16TH AVE / N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '548317',
                      'time': '02:58:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741977',
                      'lng': '-104.886993',
                      'location': 'E 16TH AVE / N XANTHIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '548318',
                      'time': '15:25:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.890512',
                      'location': 'E 16TH AVE / N VERBENA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '548365',
                      'time': '01:06:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.7438',
                      'lng': '-104.886996',
                      'location': 'E 17TH AVE / N XANTHIA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '548449',
                      'time': '00:36:03',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Vehicle Towed',
                      'district': '2',
                      'lat': '39.741977',
                      'lng': '-104.886993',
                      'location': 'E 16TH AVE / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '548648',
                      'time': '01:28:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.743791',
                      'lng': '-104.894034',
                      'location': 'E 17TH AVE / N ULSTER ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '548669',
                      'time': '22:46:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.890512',
                      'location': 'E 16TH AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '548680',
                      'time': '00:27:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.741977',
                      'lng': '-104.886993',
                      'location': 'E 16TH AVE / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '548705',
                      'time': '15:29:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.743805',
                      'lng': '-104.885819',
                      'location': 'N XENIA ST / E 17TH AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '548763',
                      'time': '14:53:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.743805',
                      'lng': '-104.885819',
                      'location': 'E 17TH AVE / N XENIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '548800',
                      'time': '15:04:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.743791',
                      'lng': '-104.894034',
                      'location': 'E 17TH AVE / N ULSTER ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '549017',
                      'time': '15:58:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '549699',
                      'time': '02:40:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.749826',
                      'lng': '-104.898732',
                      'location': 'N SYRACUSE ST / E 22ND AVE',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '549892',
                      'time': '23:32:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '550011',
                      'time': '10:48:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '550196',
                      'time': '23:45:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '550475',
                      'time': '23:19:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '550478',
                      'time': '23:17:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'N WILLOW ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '550497',
                      'time': '09:09:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '550699',
                      'time': '22:30:35',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '550731',
                      'time': '11:35:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '550849',
                      'time': '18:02:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '550861',
                      'time': '04:16:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740156',
                      'lng': '-104.888167',
                      'location': 'E COLFAX AVE / N WILLOW ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '550869',
                      'time': '23:16:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '551094',
                      'time': '01:20:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '551117',
                      'time': '22:04:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885819',
                      'location': 'E COLFAX AVE / N XENIA ST',
                      'outcome': 'warning',
                      'precinct': '223',
                      'raw_row_number': '551313',
                      'time': '00:00:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740157',
                      'lng': '-104.885819',
                      'location': 'N XENIA ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '551332',
                      'time': '23:57:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '551556',
                      'time': '22:24:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.740152',
                      'lng': '-104.886999',
                      'location': 'E COLFAX AVE / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '551699',
                      'time': '18:18:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.894028',
                      'location': 'E 16TH AVE / N ULSTER ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '552358',
                      'time': '23:25:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '2',
                      'lat': '39.741979',
                      'lng': '-104.890512',
                      'location': 'E 16TH AVE / N VERBENA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '552529',
                      'time': '08:19:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '2',
                      'lat': '39.741978',
                      'lng': '-104.885814',
                      'location': '1600-BLK N XENIA ST',
                      'outcome': 'arrest',
                      'precinct': '223',
                      'raw_row_number': '552682',
                      'time': '00:55:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '2',
                      'lat': '39.743794',
                      'lng': '-104.891687',
                      'location': '1700-BLK N VALENTIA ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '552841',
                      'time': '09:16:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '2',
                      'lat': '39.743794',
                      'lng': '-104.891687',
                      'location': '1700-BLK N VALENTIA ST',
                      'outcome': 'citation',
                      'precinct': '223',
                      'raw_row_number': '552844',
                      'time': '19:35:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Back Up / Cover Car',
                      'district': '2',
                      'lat': '39.745623',
                      'lng': '-104.897564',
                      'location': '1900-BLK N SPRUCE ST',
                      'outcome': 'NA',
                      'precinct': '223',
                      'raw_row_number': '553148',
                      'time': '04:00:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '311': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.707345',
                      'lng': '-104.940743',
                      'location': 'S COLORADO BLVD / E CHERRY CREEK N DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '130583',
                      'time': '21:32:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.707345',
                      'lng': '-104.940743',
                      'location': 'E CHERRY CREEK N DR / S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '130587',
                      'time': '20:26:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.707345',
                      'lng': '-104.940743',
                      'location': 'E VIRGINIA AVE / E CHERRY CREEK N DR',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '132445',
                      'time': '00:19:06',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.709301',
                      'lng': '-104.940733',
                      'location': '400-BLK S COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '142264',
                      'time': '21:48:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.711122',
                      'lng': '-104.981532',
                      'location': 'E ALAMEDA AVE / S PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '143707',
                      'time': '22:31:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'No Police Needed',
                      'district': '3',
                      'lat': '39.711119',
                      'lng': '-104.980383',
                      'location': 'S PEARL ST / E ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '143758',
                      'time': '12:39:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711194',
                      'lng': '-104.997141',
                      'location': 'W ALAMEDA AVE / S SANTA FE DR',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '143972',
                      'time': '21:43:43',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711194',
                      'lng': '-104.997141',
                      'location': 'W ALAMEDA AVE / S SANTA FE DR',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '146288',
                      'time': '22:36:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711194',
                      'lng': '-104.997141',
                      'location': 'S SANTA FE DR / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '146374',
                      'time': '11:07:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'File Only',
                      'district': '3',
                      'lat': '39.711194',
                      'lng': '-104.997141',
                      'location': 'W ALAMEDA AVE / S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '149026',
                      'time': '13:07:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.71114',
                      'lng': '-104.982782',
                      'location': 'E ALAMEDA AVE / S LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '153836',
                      'time': '13:24:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.71114',
                      'lng': '-104.982782',
                      'location': 'E ALAMEDA AVE / S LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '153842',
                      'time': '23:26:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711564',
                      'lng': '-104.940705',
                      'location': '300 S COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '153925',
                      'time': '04:06:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711564',
                      'lng': '-104.940705',
                      'location': 'E ALAMEDA AVE / S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '153950',
                      'time': '23:49:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.711564',
                      'lng': '-104.940705',
                      'location': 'E ALAMEDA AVE / S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '153957',
                      'time': '23:32:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.712112',
                      'lng': '-104.987549',
                      'location': 'W BYERS PL / S BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '154022',
                      'time': '01:43:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.711194',
                      'lng': '-104.997141',
                      'location': 'W ALAMEDA AVE / S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '154217',
                      'time': '18:25:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711194',
                      'lng': '-104.997141',
                      'location': '900 W ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '154367',
                      'time': '19:22:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'S BROADWAY ST / E ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '154786',
                      'time': '21:36:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.711109',
                      'lng': '-104.973393',
                      'location': 'E ALAMEDA AVE / S DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '154820',
                      'time': '00:45:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': '300-BLK S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '154990',
                      'time': '19:47:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'S BROADWAY ST / E ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '155000',
                      'time': '18:32:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'E ALAMEDA AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '155077',
                      'time': '18:09:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'S BROADWAY ST / E ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '155127',
                      'time': '00:14:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711171',
                      'lng': '-104.990008',
                      'location': 'W ALAMEDA AVE / S BANNOCK ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '155204',
                      'time': '16:03:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711154',
                      'lng': '-104.985194',
                      'location': '300 S SHERMAN ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '155323',
                      'time': '07:46:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.711218',
                      'lng': '-104.987573',
                      'location': '295 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '155649',
                      'time': '11:30:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.711114',
                      'lng': '-104.962856',
                      'location': 'E ALAMEDA AVE / S VINE ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '155690',
                      'time': '21:40:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.711118',
                      'lng': '-104.959261',
                      'location': 'S UNIVERSITY BLVD / E ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '155811',
                      'time': '10:43:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.711169',
                      'lng': '-104.989682',
                      'location': '85 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '156356',
                      'time': '01:13:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711169',
                      'lng': '-104.989682',
                      'location': '85 W ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '156361',
                      'time': '22:38:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.711177',
                      'lng': '-104.991105',
                      'location': '145 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '156847',
                      'time': '07:25:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.711205',
                      'lng': '-104.998902',
                      'location': 'I25 NB / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '157276',
                      'time': '15:41:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711205',
                      'lng': '-104.998902',
                      'location': 'W ALAMEDA AVE / I25 NB',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '157292',
                      'time': '17:46:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'E ALAMEDA AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '157379',
                      'time': '05:53:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': '300-BLK S BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '157608',
                      'time': '23:06:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'S BROADWAY ST / E ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '157609',
                      'time': '17:05:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711205',
                      'lng': '-104.998391',
                      'location': 'W ALAMEDA AVE / S KALAMATH ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '157748',
                      'time': '22:05:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711146',
                      'lng': '-104.984014',
                      'location': 'S GRANT ST / E ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '157930',
                      'time': '09:42:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.71116',
                      'lng': '-104.986369',
                      'location': 'S LINCOLN ST / E ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '157991',
                      'time': '23:16:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711109',
                      'lng': '-104.973393',
                      'location': 'E ALAMEDA AVE / S DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '158023',
                      'time': '06:20:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.71116',
                      'lng': '-104.986369',
                      'location': 'S LINCOLN ST / E ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '158066',
                      'time': '02:32:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.714797',
                      'lng': '-104.998565',
                      'location': 'S SANTA FE DR / W BAYAUD AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '158302',
                      'time': '23:32:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.71473',
                      'lng': '-104.973145',
                      'location': 'E BAYAUD AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '158385',
                      'time': '00:48:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.71755',
                      'lng': '-104.950267',
                      'location': 'E 1ST AVE / N STEELE ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '158987',
                      'time': '23:57:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718175',
                      'lng': '-104.966798',
                      'location': '1700-BLK E 1ST AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '159001',
                      'time': '23:51:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.718175',
                      'lng': '-104.966798',
                      'location': '1700 E 1ST AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '159002',
                      'time': '23:52:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718175',
                      'lng': '-104.966798',
                      'location': '1700-BLK E 1ST AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '159003',
                      'time': '23:57:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.716561',
                      'lng': '-104.986247',
                      'location': 'E ELLSWORTH AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '159330',
                      'time': '18:15:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.716531',
                      'lng': '-104.978044',
                      'location': 'E ELLSWORTH AVE / N CLARKSON ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '159678',
                      'time': '00:17:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.716531',
                      'lng': '-104.978044',
                      'location': 'E ELLSWORTH AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '159679',
                      'time': '22:10:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.716533',
                      'lng': '-104.981468',
                      'location': 'E ELLSWORTH AVE / N PENNSYLVANIA ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '159859',
                      'time': '23:04:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718034',
                      'lng': '-104.957552',
                      'location': '2500 E 1ST AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '159960',
                      'time': '03:01:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.716553',
                      'lng': '-104.985021',
                      'location': 'N SHERMAN ST / E ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '160438',
                      'time': '22:59:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.716403',
                      'lng': '-104.985022',
                      'location': '10 S SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '160727',
                      'time': '19:07:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.71478',
                      'lng': '-104.987525',
                      'location': 'E BAYAUD AVE / S BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '160941',
                      'time': '00:34:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.716523',
                      'lng': '-104.980299',
                      'location': 'E ELLSWORTH AVE / N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '160986',
                      'time': '23:18:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.718001',
                      'lng': '-104.951177',
                      'location': 'E 1ST AVE / N ST PAUL ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '161083',
                      'time': '07:54:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.718001',
                      'lng': '-104.951177',
                      'location': '100 N ST PAUL ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '161085',
                      'time': '09:04:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718001',
                      'lng': '-104.951177',
                      'location': 'E 1ST AVE / N ST PAUL ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '161086',
                      'time': '18:26:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.718359',
                      'lng': '-104.987498',
                      'location': 'W 1ST AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '162280',
                      'time': '17:20:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.718359',
                      'lng': '-104.987498',
                      'location': 'N BROADWAY ST / E 1ST AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '162299',
                      'time': '07:48:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.712975',
                      'lng': '-104.986324',
                      'location': 'S LINCOLN ST / E CEDAR AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '163373',
                      'time': '17:59:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.712975',
                      'lng': '-104.986324',
                      'location': 'S LINCOLN ST / E CEDAR AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '163374',
                      'time': '13:04:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.715065',
                      'lng': '-104.940698',
                      'location': 'S COLORADO BLVD / LEETSDALE DR',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '164436',
                      'time': '07:18:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.713809',
                      'lng': '-104.980388',
                      'location': '150 S PEARL ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '164456',
                      'time': '19:22:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.714808',
                      'lng': '-104.996352',
                      'location': 'W BAYAUD AVE / S GALAPAGO ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '164640',
                      'time': '00:21:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.714715',
                      'lng': '-104.979169',
                      'location': '100-BLK S WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '164920',
                      'time': '23:23:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.71478',
                      'lng': '-104.987525',
                      'location': 'E BAYAUD AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '164967',
                      'time': '02:39:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.714715',
                      'lng': '-104.979169',
                      'location': 'E BAYAUD AVE / S WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '166761',
                      'time': '19:22:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.71478',
                      'lng': '-104.987525',
                      'location': 'S BROADWAY ST / E BAYAUD AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '167406',
                      'time': '01:59:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.712991',
                      'lng': '-104.987543',
                      'location': 'S BROADWAY ST / E CEDAR AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '167632',
                      'time': '18:19:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.714737',
                      'lng': '-104.982696',
                      'location': '100 S LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '167673',
                      'time': '00:39:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.71306',
                      'lng': '-104.940685',
                      'location': 'S COLORADO BLVD / E CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '167746',
                      'time': '02:39:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.714776',
                      'lng': '-104.987279',
                      'location': '20 E BAYAUD AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '167988',
                      'time': '23:40:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.714731',
                      'lng': '-104.981489',
                      'location': 'S PENNSYLVANIA ST / E BAYAUD AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '168268',
                      'time': '21:54:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.71478',
                      'lng': '-104.987525',
                      'location': '100 S BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '168328',
                      'time': '02:02:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.711184',
                      'lng': '-104.992398',
                      'location': '300 S CHEROKEE ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '168636',
                      'time': '15:03:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711205',
                      'lng': '-104.998902',
                      'location': 'I25 NB / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '168800',
                      'time': '03:29:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.711206',
                      'lng': '-104.999132',
                      'location': 'I25 SB / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '168835',
                      'time': '14:41:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.711564',
                      'lng': '-104.940705',
                      'location': 'S COLORADO BLVD / E ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '168941',
                      'time': '06:00:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.713014',
                      'lng': '-104.989987',
                      'location': '200-BLK S BANNOCK ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '169197',
                      'time': '22:22:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.713027',
                      'lng': '-104.992375',
                      'location': '200 S CHEROKEE ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '169274',
                      'time': '04:27:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.71476',
                      'lng': '-104.986269',
                      'location': 'E BAYAUD AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '169863',
                      'time': '21:44:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Detox Van',
                      'district': '3',
                      'lat': '39.71476',
                      'lng': '-104.986269',
                      'location': 'E BAYAUD AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '169920',
                      'time': '00:01:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.714719',
                      'lng': '-104.976915',
                      'location': 'S EMERSON ST / E BAYAUD AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '169943',
                      'time': '23:26:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.712932',
                      'lng': '-104.981547',
                      'location': '200-BLK S PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '170038',
                      'time': '20:41:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.712932',
                      'lng': '-104.981547',
                      'location': 'S PENNSYLVANIA ST / E CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '170040',
                      'time': '18:28:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.715674',
                      'lng': '-104.987511',
                      'location': 'S BROADWAY ST / W ARCHER PL',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '170124',
                      'time': '16:45:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.715473',
                      'lng': '-104.98626',
                      'location': '60 S LINCOLN ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '170234',
                      'time': '12:32:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.714659',
                      'lng': '-104.948587',
                      'location': 'E BAYAUD AVE / S ADAMS ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '170478',
                      'time': '00:35:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.714752',
                      'lng': '-104.985036',
                      'location': 'E BAYAUD AVE / S SHERMAN ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '170628',
                      'time': '10:07:32',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.714663',
                      'lng': '-104.949851',
                      'location': 'E CHERRY CREEK N DR / S STEELE ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '170898',
                      'time': '15:23:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.714663',
                      'lng': '-104.949851',
                      'location': 'E BAYAUD AVE / S STEELE ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '170962',
                      'time': '07:06:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.713492',
                      'lng': '-104.99828',
                      'location': '200 S SANTA FE DR',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '171027',
                      'time': '20:44:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.713492',
                      'lng': '-104.99828',
                      'location': 'S SANTA FE DR / W CEDAR AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '171093',
                      'time': '09:45:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.713492',
                      'lng': '-104.99828',
                      'location': 'W CEDAR AVE / S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '171101',
                      'time': '22:49:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.714791',
                      'lng': '-105.000159',
                      'location': 'S KALAMATH ST / W BAYAUD AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '171290',
                      'time': '22:35:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.713897',
                      'lng': '-104.987536',
                      'location': 'E MAPLE AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '171528',
                      'time': '23:41:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.715674',
                      'lng': '-104.987511',
                      'location': 'W ARCHER PL / S BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '171598',
                      'time': '01:46:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.714118',
                      'lng': '-104.999833',
                      'location': '138 S KALAMATH ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '171706',
                      'time': '22:42:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.714749',
                      'lng': '-104.983809',
                      'location': 'E BAYAUD AVE / S GRANT ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '171882',
                      'time': '18:18:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.714749',
                      'lng': '-104.983809',
                      'location': '100-Blk-S S GRANT ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '171892',
                      'time': '20:16:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.712991',
                      'lng': '-104.987543',
                      'location': '200-BLK S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '171923',
                      'time': '21:01:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.715674',
                      'lng': '-104.987511',
                      'location': '55 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '172329',
                      'time': '22:06:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.713886',
                      'lng': '-104.986291',
                      'location': 'S LINCOLN ST / E MAPLE AVE',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '172478',
                      'time': '14:38:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.712953',
                      'lng': '-104.983915',
                      'location': 'E CEDAR AVE / S GRANT ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '172725',
                      'time': '22:24:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.713492',
                      'lng': '-104.99828',
                      'location': 'W CEDAR AVE / S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '172980',
                      'time': '23:56:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.713492',
                      'lng': '-104.99828',
                      'location': '200 S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '172990',
                      'time': '04:57:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.713886',
                      'lng': '-104.986291',
                      'location': 'S LINCOLN ST / E MAPLE AVE',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '173071',
                      'time': '12:01:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.71476',
                      'lng': '-104.986269',
                      'location': 'E BAYAUD AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '173199',
                      'time': '00:47:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.712991',
                      'lng': '-104.987543',
                      'location': 'S BROADWAY ST / E CEDAR AVE',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '173219',
                      'time': '22:38:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.712953',
                      'lng': '-104.983915',
                      'location': 'E CEDAR AVE / S GRANT ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '173293',
                      'time': '01:32:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.712915',
                      'lng': '-104.974573',
                      'location': 'E CEDAR AVE / S CORONA ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '173315',
                      'time': '21:46:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.712962',
                      'lng': '-104.985152',
                      'location': '200 S SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '173373',
                      'time': '00:33:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.712916',
                      'lng': '-104.973397',
                      'location': 'S DOWNING ST / E CEDAR AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '173393',
                      'time': '22:19:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.711184',
                      'lng': '-104.992398',
                      'location': 'S CHEROKEE ST / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '173749',
                      'time': '01:40:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711171',
                      'lng': '-104.990008',
                      'location': 'W ALAMEDA AVE / S BANNOCK ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '174019',
                      'time': '22:06:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.711171',
                      'lng': '-104.990008',
                      'location': 'W ALAMEDA AVE / S BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '174020',
                      'time': '02:11:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.712112',
                      'lng': '-104.987549',
                      'location': 'W BYERS PL / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '174064',
                      'time': '16:02:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711206',
                      'lng': '-104.999132',
                      'location': 'I25 SB / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '174523',
                      'time': '02:11:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'E ALAMEDA AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '174583',
                      'time': '01:21:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'E ALAMEDA AVE / S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '174594',
                      'time': '00:00:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'E ALAMEDA AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '174847',
                      'time': '09:36:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'S BROADWAY ST / E ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '174849',
                      'time': '00:17:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': '300 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '175776',
                      'time': '12:28:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711184',
                      'lng': '-104.992398',
                      'location': 'W ALAMEDA AVE / S CHEROKEE ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '175856',
                      'time': '10:38:26',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711006',
                      'lng': '-104.948022',
                      'location': 'E ALAMEDA AVE / E CHERRY CREEK S DR',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '176201',
                      'time': '04:29:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711118',
                      'lng': '-104.959261',
                      'location': 'S UNIVERSITY BLVD / E ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '176227',
                      'time': '21:45:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711118',
                      'lng': '-104.959261',
                      'location': 'E ALAMEDA AVE / S UNIVERSITY BLVD',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '176860',
                      'time': '09:04:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.711564',
                      'lng': '-104.940705',
                      'location': 'S COLORADO BLVD / E ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '176996',
                      'time': '21:39:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.713864',
                      'lng': '-104.983819',
                      'location': 'S GRANT ST / E MAPLE AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '177341',
                      'time': '19:06:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.713873',
                      'lng': '-104.984846',
                      'location': '217 E MAPLE AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '177344',
                      'time': '23:40:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711205',
                      'lng': '-104.998902',
                      'location': 'I25 NB / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '177457',
                      'time': '10:15:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.711205',
                      'lng': '-104.998902',
                      'location': 'I25 NB / W ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '177795',
                      'time': '09:03:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '3',
                      'lat': '39.711564',
                      'lng': '-104.940705',
                      'location': '300 S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '177908',
                      'time': '02:24:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711184',
                      'lng': '-104.992398',
                      'location': 'S CHEROKEE ST / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '178236',
                      'time': '10:16:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711158',
                      'lng': '-104.987575',
                      'location': 'S BROADWAY ST / W ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '178443',
                      'time': '01:48:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.712112',
                      'lng': '-104.987549',
                      'location': 'W BYERS PL / S BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '178534',
                      'time': '00:20:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718359',
                      'lng': '-104.987498',
                      'location': 'W 1ST AVE / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '178666',
                      'time': '00:53:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.719352',
                      'lng': '-104.982576',
                      'location': '200 N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '178997',
                      'time': '23:29:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.719352',
                      'lng': '-104.982576',
                      'location': 'E 2ND AVE / N LOGAN ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '179004',
                      'time': '00:23:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.721253',
                      'lng': '-104.987457',
                      'location': '320 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '179475',
                      'time': '20:19:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.724137',
                      'lng': '-104.990846',
                      'location': 'W 5TH AVE / N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '179537',
                      'time': '19:31:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.719369',
                      'lng': '-104.987498',
                      'location': '200-BLK N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '179556',
                      'time': '01:24:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.719374',
                      'lng': '-104.986236',
                      'location': 'E 2ND AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '179581',
                      'time': '18:41:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'No Police Needed',
                      'district': '3',
                      'lat': '39.72374',
                      'lng': '-104.998577',
                      'location': '475 N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '179796',
                      'time': '23:00:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.724126',
                      'lng': '-104.992826',
                      'location': 'W 5TH AVE / N DELAWARE ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '179965',
                      'time': '17:42:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.723139',
                      'lng': '-104.982381',
                      'location': 'E SPEER BLVD / N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '180339',
                      'time': '01:31:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.723139',
                      'lng': '-104.982381',
                      'location': 'E SPEER BLVD / N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '180340',
                      'time': '21:05:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.722536',
                      'lng': '-104.987486',
                      'location': '400-LINCOLN N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '180632',
                      'time': '23:45:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.722429',
                      'lng': '-104.981236',
                      'location': 'E SPEER BLVD / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '180698',
                      'time': '23:45:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.720967',
                      'lng': '-104.94134',
                      'location': 'N HARRISON ST / E 3RD AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '180989',
                      'time': '12:49:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.724125',
                      'lng': '-104.99637800000001',
                      'location': 'W 5TH AVE / N GALAPAGO ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '181021',
                      'time': '23:13:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.722536',
                      'lng': '-104.987486',
                      'location': '400 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '181053',
                      'time': '00:25:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.722536',
                      'lng': '-104.987486',
                      'location': 'N BROADWAY ST / W 4TH AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '181061',
                      'time': '09:25:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.722536',
                      'lng': '-104.987486',
                      'location': '400-BLK N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '181224',
                      'time': '23:26:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.722536',
                      'lng': '-104.987486',
                      'location': '400 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '181226',
                      'time': '21:58:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.724131',
                      'lng': '-104.998577',
                      'location': '500 N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '181568',
                      'time': '11:15:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.724126',
                      'lng': '-104.983629',
                      'location': 'E SPEER BLVD / N GRANT ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '181633',
                      'time': '12:54:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.722551',
                      'lng': '-104.957048',
                      'location': '400 N COLUMBINE ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '181658',
                      'time': '11:47:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.720965',
                      'lng': '-104.983788',
                      'location': 'E 3RD AVE / N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '181782',
                      'time': '23:25:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.720962',
                      'lng': '-104.940703',
                      'location': 'E 3RD AVE / N COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '182111',
                      'time': '02:57:06',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.72092',
                      'lng': '-104.980286',
                      'location': 'E 3RD AVE / N PEARL ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '182257',
                      'time': '23:28:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.720931',
                      'lng': '-104.982613',
                      'location': 'E 3RD AVE / N LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '182829',
                      'time': '11:53:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.720931',
                      'lng': '-104.982613',
                      'location': 'N LOGAN ST / E 3RD AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '182839',
                      'time': '00:04:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.720962',
                      'lng': '-104.940703',
                      'location': 'E 3RD AVE / N COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '183240',
                      'time': '23:09:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.724131',
                      'lng': '-104.998577',
                      'location': 'W 5TH AVE / N SANTA FE DR',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '183286',
                      'time': '11:10:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.724126',
                      'lng': '-104.983629',
                      'location': '500 N GRANT ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '183302',
                      'time': '14:47:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.720944',
                      'lng': '-104.98745',
                      'location': '300 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '183365',
                      'time': '01:31:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.72255',
                      'lng': '-104.958255',
                      'location': '400 N JOSEPHINE ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '183398',
                      'time': '07:42:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.720981',
                      'lng': '-104.958251',
                      'location': 'N JOSEPHINE ST / E 3RD AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '183772',
                      'time': '14:39:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.719369',
                      'lng': '-104.987498',
                      'location': '200-BLK N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '183811',
                      'time': '18:24:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.720944',
                      'lng': '-104.98745',
                      'location': 'W 3RD AVE / N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '185017',
                      'time': '10:32:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.718346',
                      'lng': '-104.965297',
                      'location': 'E 1ST AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '185131',
                      'time': '21:34:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.718276',
                      'lng': '-104.959219',
                      'location': 'E 1ST AVE / N JOSEPHINE ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '185410',
                      'time': '21:14:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.719353',
                      'lng': '-104.989175',
                      'location': '200-BLK-BROADWAY N ACOMA ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '185569',
                      'time': '22:27:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.722542',
                      'lng': '-104.98918',
                      'location': 'W 4TH AVE / N ACOMA ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '185683',
                      'time': '02:25:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.720933',
                      'lng': '-104.998578',
                      'location': 'N SANTA FE DR / W 3RD AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '185821',
                      'time': '00:22:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.719369',
                      'lng': '-104.987498',
                      'location': '200 N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '185952',
                      'time': '23:49:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.720944',
                      'lng': '-104.98745',
                      'location': 'W 3RD AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '186211',
                      'time': '17:26:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.719369',
                      'lng': '-104.987498',
                      'location': '200-BLK N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '186219',
                      'time': '01:58:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.722536',
                      'lng': '-104.987486',
                      'location': '400-BLK-LINCOLN N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '186361',
                      'time': '00:08:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.720106',
                      'lng': '-104.972931',
                      'location': 'E 3RD AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '186382',
                      'time': '02:34:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.719369',
                      'lng': '-104.987498',
                      'location': '200 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '186504',
                      'time': '00:42:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.719422',
                      'lng': '-104.958549',
                      'location': 'E 2ND AVE / N JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '186589',
                      'time': '06:57:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'GOA',
                      'district': '3',
                      'lat': '39.718276',
                      'lng': '-104.959219',
                      'location': '2301 E 1ST AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '186632',
                      'time': '18:58:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.722608',
                      'lng': '-104.9826',
                      'location': 'E SPEER BLVD / N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '186946',
                      'time': '23:34:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.719369',
                      'lng': '-104.987498',
                      'location': '200 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '187100',
                      'time': '01:41:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.719356',
                      'lng': '-104.997539',
                      'location': '200 N INCA ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '187352',
                      'time': '22:45:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.720941',
                      'lng': '-104.989178',
                      'location': '300-BROADWAY N ACOMA ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '187395',
                      'time': '00:38:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.718359',
                      'lng': '-104.987498',
                      'location': '100 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '187481',
                      'time': '01:14:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.718276',
                      'lng': '-104.959219',
                      'location': '100 N UNIVERSITY BLVD',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '187568',
                      'time': '23:23:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.720972',
                      'lng': '-104.949797',
                      'location': '300-BLK N STEELE ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '187623',
                      'time': '08:16:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.719348',
                      'lng': '-104.99399',
                      'location': 'W 2ND AVE / N ELATI ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '188016',
                      'time': '11:39:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.719369',
                      'lng': '-104.987498',
                      'location': 'N BROADWAY ST / W 2ND AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '188037',
                      'time': '15:38:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.718359',
                      'lng': '-104.987498',
                      'location': 'W 1ST AVE / N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '188357',
                      'time': '16:33:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718424',
                      'lng': '-104.997542',
                      'location': '800-BLK W 1ST AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '188414',
                      'time': '20:23:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718276',
                      'lng': '-104.959219',
                      'location': 'N UNIVERSITY BLVD / E 1ST AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '188771',
                      'time': '02:22:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.718276',
                      'lng': '-104.959219',
                      'location': 'E 1ST AVE / N UNIVERSITY BLVD',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '188772',
                      'time': '01:44:35',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718276',
                      'lng': '-104.959219',
                      'location': 'N UNIVERSITY BLVD / E 1ST AVE',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '188795',
                      'time': '00:50:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.720928',
                      'lng': '-105.007021',
                      'location': '300 N QUIVAS ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '188848',
                      'time': '00:08:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.718134',
                      'lng': '-104.952205',
                      'location': 'E 1ST AVE / N MILWAUKEE ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '189231',
                      'time': '20:54:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.716576',
                      'lng': '-104.987502',
                      'location': 'N BROADWAY ST / E ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '189466',
                      'time': '20:42:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.716576',
                      'lng': '-104.987502',
                      'location': 'E ELLSWORTH AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '189470',
                      'time': '10:11:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.718429',
                      'lng': '-104.998575',
                      'location': 'W 1ST AVE / N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '189782',
                      'time': '20:42:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.718333',
                      'lng': '-104.976919',
                      'location': 'E 1ST AVE / N EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '189875',
                      'time': '01:12:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.718355',
                      'lng': '-104.986238',
                      'location': 'E 1ST AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '189959',
                      'time': '00:57:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718341',
                      'lng': '-104.966665',
                      'location': 'E 1ST AVE / N GILPIN ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '190393',
                      'time': '02:07:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.718341',
                      'lng': '-104.966665',
                      'location': '100 N GILPIN ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '190395',
                      'time': '08:21:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.718355',
                      'lng': '-104.986238',
                      'location': 'E 1ST AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '190560',
                      'time': '22:19:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.719369',
                      'lng': '-104.987498',
                      'location': 'E 2ND AVE / N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '190697',
                      'time': '11:11:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718621',
                      'lng': '-104.972886',
                      'location': 'E SPEER BLVD / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '190764',
                      'time': '00:07:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.720123',
                      'lng': '-104.977547',
                      'location': 'E SPEER BLVD / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '191048',
                      'time': '23:20:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.718355',
                      'lng': '-104.986238',
                      'location': 'E 1ST AVE / N LINCOLN ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '191829',
                      'time': '08:36:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.718355',
                      'lng': '-104.986238',
                      'location': 'N LINCOLN ST / E 1ST AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '191841',
                      'time': '09:19:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718355',
                      'lng': '-104.986238',
                      'location': '100 N LINCOLN ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '191848',
                      'time': '02:00:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.718429',
                      'lng': '-104.998575',
                      'location': 'W 1ST AVE / N SANTA FE DR',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '192442',
                      'time': '23:54:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.719369',
                      'lng': '-104.987498',
                      'location': '200-BLK N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '192585',
                      'time': '07:24:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.720944',
                      'lng': '-104.98745',
                      'location': 'E 3RD AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '192695',
                      'time': '23:56:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.718359',
                      'lng': '-104.987498',
                      'location': 'E 1ST AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '192884',
                      'time': '02:52:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.718359',
                      'lng': '-104.987498',
                      'location': 'E 1ST AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '193301',
                      'time': '19:23:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Detox Van,K - Street Check Com',
                      'district': '3',
                      'lat': '39.718555',
                      'lng': '-104.987498',
                      'location': '120 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '193658',
                      'time': '00:13:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.718555',
                      'lng': '-104.987498',
                      'location': '120 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '193667',
                      'time': '21:37:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.718555',
                      'lng': '-104.987498',
                      'location': '120 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '193669',
                      'time': '22:14:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.717465',
                      'lng': '-104.987506',
                      'location': 'N BROADWAY ST / W IRVINGTON PL',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '194360',
                      'time': '01:36:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.716576',
                      'lng': '-104.987502',
                      'location': 'E ELLSWORTH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '195185',
                      'time': '17:22:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.716576',
                      'lng': '-104.987502',
                      'location': 'N BROADWAY ST / E ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '195471',
                      'time': '01:44:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.717465',
                      'lng': '-104.987506',
                      'location': 'N BROADWAY ST / W IRVINGTON PL',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '195558',
                      'time': '10:05:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.716598',
                      'lng': '-104.998577',
                      'location': 'N SANTA FE DR / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '195751',
                      'time': '01:31:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.716576',
                      'lng': '-104.987502',
                      'location': 'S BROADWAY ST / W ELLSWORTH AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '195775',
                      'time': '02:23:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.716576',
                      'lng': '-104.987502',
                      'location': 'W ELLSWORTH AVE / S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '195784',
                      'time': '20:00:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718343',
                      'lng': '-104.985001',
                      'location': '100-BLK N SHERMAN ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '196180',
                      'time': '14:20:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718343',
                      'lng': '-104.985001',
                      'location': '100-BLK-LINCOLN N SHERMAN ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '196186',
                      'time': '19:13:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.716576',
                      'lng': '-104.987502',
                      'location': 'W ELLSWORTH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '196386',
                      'time': '21:55:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.716576',
                      'lng': '-104.987502',
                      'location': 'N BROADWAY ST / W ELLSWORTH AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '196400',
                      'time': '00:56:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.716224',
                      'lng': '-104.940705',
                      'location': 'N COLORADO BLVD / E ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '198656',
                      'time': '22:06:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.717465',
                      'lng': '-104.987506',
                      'location': 'N BROADWAY ST / W IRVINGTON PL',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '198875',
                      'time': '18:03:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.717465',
                      'lng': '-104.987506',
                      'location': 'N BROADWAY ST / W IRVINGTON PL',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '198876',
                      'time': '01:44:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.716531',
                      'lng': '-104.982634',
                      'location': 'E ELLSWORTH AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '199078',
                      'time': '01:23:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.725578',
                      'lng': '-104.974078',
                      'location': 'E 6TH AVE / N CORONA ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '199592',
                      'time': '14:14:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '3',
                      'lat': '39.724816',
                      'lng': '-104.987461',
                      'location': '545 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '199636',
                      'time': '08:28:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.725081',
                      'lng': '-104.961328',
                      'location': 'N GAYLORD ST / N CIRCLE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '201370',
                      'time': '21:44:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'File Only',
                      'district': '3',
                      'lat': '39.725266',
                      'lng': '-105.001613',
                      'location': '575 N LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '201377',
                      'time': '11:27:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.727116',
                      'lng': '-104.960163',
                      'location': 'E 7TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '202616',
                      'time': '23:06:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.726583',
                      'lng': '-104.986173',
                      'location': 'N LINCOLN ST / E SPEER BLVD',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '202977',
                      'time': '22:51:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.725636',
                      'lng': '-104.981131',
                      'location': 'E 6TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '204539',
                      'time': '13:15:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.725636',
                      'lng': '-104.981131',
                      'location': '500 E 6TH AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '205152',
                      'time': '01:57:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.724126',
                      'lng': '-104.952213',
                      'location': 'E 5TH AVE / N MILWAUKEE ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '205255',
                      'time': '10:03:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.724125',
                      'lng': '-104.949796',
                      'location': '500-BLK N STEELE ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '205872',
                      'time': '11:07:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.724129',
                      'lng': '-104.958256',
                      'location': 'N JOSEPHINE ST / E 5TH AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '206468',
                      'time': '10:44:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.725647',
                      'lng': '-104.986261',
                      'location': 'E SPEER BLVD / E 6TH AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '207205',
                      'time': '23:29:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.724117',
                      'lng': '-104.941339',
                      'location': '3900 E 5TH AVE',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '207380',
                      'time': '13:52:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.725637999999996',
                      'lng': '-104.987435',
                      'location': 'E 6TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '207423',
                      'time': '23:31:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.725607',
                      'lng': '-104.961335',
                      'location': 'E 6TH AVE / N GAYLORD ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '207601',
                      'time': '02:38:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.725622',
                      'lng': '-104.982361',
                      'location': 'E 6TH AVE / N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '208071',
                      'time': '00:11:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.724117',
                      'lng': '-104.941339',
                      'location': 'E 5TH AVE / N HARRISON ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '209229',
                      'time': '02:12:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.725622',
                      'lng': '-104.982361',
                      'location': '600 N LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '209300',
                      'time': '18:47:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.722526',
                      'lng': '-104.99637',
                      'location': 'W 4TH AVE / N GALAPAGO ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '209812',
                      'time': '04:31:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': '400-BLK N LINCOLN ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '209870',
                      'time': '17:25:40',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': '400-BDWY N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '209894',
                      'time': '23:39:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.722541',
                      'lng': '-104.943755',
                      'location': 'E 4TH AVE / N GARFIELD ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '209907',
                      'time': '01:07:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.725631',
                      'lng': '-104.983619',
                      'location': 'N GRANT ST / E 6TH AVE',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '210382',
                      'time': '19:57:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.725637999999996',
                      'lng': '-104.987435',
                      'location': '600-BLK N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '211044',
                      'time': '00:25:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.725637999999996',
                      'lng': '-104.987435',
                      'location': 'E 6TH AVE / N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '211046',
                      'time': '22:21:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.72414',
                      'lng': '-104.986252',
                      'location': '500 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '213232',
                      'time': '00:07:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.725372',
                      'lng': '-105.007497',
                      'location': 'N QUIVAS ST / W 6TH AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '213493',
                      'time': '22:39:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.725637999999996',
                      'lng': '-104.987435',
                      'location': 'W 6TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '213624',
                      'time': '22:03:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.724232',
                      'lng': '-104.986253',
                      'location': '507 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '213982',
                      'time': '22:22:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.725637999999996',
                      'lng': '-104.987435',
                      'location': 'W 6TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '214333',
                      'time': '08:36:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.720944',
                      'lng': '-104.98745',
                      'location': 'N BROADWAY ST / W 3RD AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '214647',
                      'time': '10:14:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.720944',
                      'lng': '-104.98745',
                      'location': 'E 3RD AVE / N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '214650',
                      'time': '02:07:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.723151',
                      'lng': '-104.940703',
                      'location': 'E 4TH AVE / N COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '215116',
                      'time': '12:30:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'File Only',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': 'E 4TH AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '215617',
                      'time': '21:23:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.724122',
                      'lng': '-105.000188',
                      'location': '500 N KALAMATH ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '215790',
                      'time': '01:47:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.724137',
                      'lng': '-104.987482',
                      'location': '500 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '216135',
                      'time': '21:04:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.721809',
                      'lng': '-105.000182',
                      'location': '355 N KALAMATH ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '217032',
                      'time': '03:03:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.724118',
                      'lng': '-104.982357',
                      'location': '500 N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '217051',
                      'time': '12:53:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': 'N LINCOLN ST / E 4TH AVE',
                      'outcome': 'citation',
                      'precinct': '311',
                      'raw_row_number': '217129',
                      'time': '11:06:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.722533',
                      'lng': '-104.994003',
                      'location': 'W 4TH AVE / N ELATI ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '217693',
                      'time': '18:26:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': 'E 4TH AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '217754',
                      'time': '22:03:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.722536',
                      'lng': '-104.987486',
                      'location': 'N BROADWAY ST / W 4TH AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '218019',
                      'time': '08:19:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.724122',
                      'lng': '-105.000188',
                      'location': 'W 5TH AVE / N KALAMATH ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '218204',
                      'time': '00:35:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': '400-BLK N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '218322',
                      'time': '04:51:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': 'E 4TH AVE / N LINCOLN ST',
                      'outcome': 'arrest',
                      'precinct': '311',
                      'raw_row_number': '218337',
                      'time': '00:57:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.725372',
                      'lng': '-105.005634',
                      'location': 'W 6TH AVE / N OSAGE ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '218447',
                      'time': '07:04:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.722526',
                      'lng': '-104.99637',
                      'location': 'W 4TH AVE / N GALAPAGO ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '218894',
                      'time': '23:39:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': '100 E 4TH AVE',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '218968',
                      'time': '22:23:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.723139',
                      'lng': '-104.982381',
                      'location': 'E SPEER BLVD / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '219034',
                      'time': '19:54:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.722533',
                      'lng': '-104.998578',
                      'location': 'W 4TH AVE / N SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '219184',
                      'time': '01:09:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': '400 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '219539',
                      'time': '04:03:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': '400-BLK-BROADWAY N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '219551',
                      'time': '19:23:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.722546',
                      'lng': '-104.98623',
                      'location': 'E 4TH AVE / N LINCOLN ST',
                      'outcome': 'warning',
                      'precinct': '311',
                      'raw_row_number': '219552',
                      'time': '21:22:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '3',
                      'lat': '39.723423',
                      'lng': '-104.985017',
                      'location': '455 N SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '311',
                      'raw_row_number': '219684',
                      'time': '23:10:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '312': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.683132',
                      'lng': '-104.940687',
                      'location': 'I25 NB / S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '54231',
                      'time': '04:14:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.683132',
                      'lng': '-104.940687',
                      'location': 'S COLORADO BLVD / I25 NB',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '54880',
                      'time': '16:12:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.683132',
                      'lng': '-104.940687',
                      'location': 'I25 NB / S COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '55009',
                      'time': '16:14:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.683132',
                      'lng': '-104.940687',
                      'location': 'S COLORADO BLVD / I25 NB',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '55031',
                      'time': '15:40:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '56860',
                      'time': '22:48:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '56861',
                      'time': '22:48:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.684866',
                      'lng': '-104.959447',
                      'location': 'I25 NB / S UNIVERSITY BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '56942',
                      'time': '11:04:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684866',
                      'lng': '-104.959447',
                      'location': 'I25 NB / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '56943',
                      'time': '23:04:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.684374',
                      'lng': '-104.943014',
                      'location': '1776 S JACKSON ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '57090',
                      'time': '14:59:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '57355',
                      'time': '08:43:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '57356',
                      'time': '08:43:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '57453',
                      'time': '10:13:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '57454',
                      'time': '10:13:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '57509',
                      'time': '02:38:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '57510',
                      'time': '02:38:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684866',
                      'lng': '-104.959447',
                      'location': 'I25 NB / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '57606',
                      'time': '01:39:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '57790',
                      'time': '10:48:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '57791',
                      'time': '10:48:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '57800',
                      'time': '08:35:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '57801',
                      'time': '08:35:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684858',
                      'lng': '-104.950408',
                      'location': 'I25 NB / S STEELE ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '57809',
                      'time': '07:29:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'S UNIVERSITY BLVD / I25 SB',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '57918',
                      'time': '10:42:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '58014',
                      'time': '00:44:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '58015',
                      'time': '00:44:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'S UNIVERSITY BLVD / I25 SB',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '58383',
                      'time': '10:42:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.684725',
                      'lng': '-104.950467',
                      'location': 'I25 SB / S STEELE ST',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '58457',
                      'time': '02:11:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.684866',
                      'lng': '-104.959447',
                      'location': 'I25 NB / S UNIVERSITY BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '58611',
                      'time': '21:31:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '59173',
                      'time': '01:21:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684729',
                      'lng': '-104.959447',
                      'location': 'I25 SB / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '59174',
                      'time': '01:21:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.685704',
                      'lng': '-104.951233',
                      'location': 'S ST PAUL ST / E MEXICO AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '59214',
                      'time': '09:52:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.685687',
                      'lng': '-104.940693',
                      'location': 'E MEXICO AVE / S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '59325',
                      'time': '01:33:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.685687',
                      'lng': '-104.940693',
                      'location': 'S COLORADO BLVD / E MEXICO AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '60681',
                      'time': '22:28:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.685687',
                      'lng': '-104.940693',
                      'location': 'S COLORADO BLVD / E MEXICO AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '60694',
                      'time': '03:36:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'File Only',
                      'district': '3',
                      'lat': '39.687076',
                      'lng': '-104.959414',
                      'location': '1625 S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '61768',
                      'time': '02:27:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Z - Test',
                      'district': '3',
                      'lat': '39.687076',
                      'lng': '-104.959414',
                      'location': '1625 S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '63035',
                      'time': '10:39:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.687507',
                      'lng': '-104.959395',
                      'location': 'E IOWA AVE / S UNIVERSITY BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '64279',
                      'time': '00:04:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.687528',
                      'lng': '-104.962806',
                      'location': 'E IOWA AVE / S VINE ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '64285',
                      'time': '15:29:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.687525',
                      'lng': '-104.958148',
                      'location': 'S JOSEPHINE ST / E IOWA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '64308',
                      'time': '09:34:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.687681',
                      'lng': '-104.968727',
                      'location': 'I25 NB / S FRANKLIN ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '64386',
                      'time': '11:27:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.687518',
                      'lng': '-104.968728',
                      'location': 'I25 SB / S FRANKLIN ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '64623',
                      'time': '01:59:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.687503',
                      'lng': '-104.960538',
                      'location': 'S YORK ST / E IOWA AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '64846',
                      'time': '19:43:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.687507',
                      'lng': '-104.959395',
                      'location': '1600 S UNIVERSITY BLVD',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '64881',
                      'time': '15:21:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.687507',
                      'lng': '-104.959395',
                      'location': 'E IOWA AVE / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '65504',
                      'time': '22:59:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.689305',
                      'lng': '-104.959353',
                      'location': 'E FLORIDA AVE / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '71407',
                      'time': '02:20:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.689321',
                      'lng': '-104.940629',
                      'location': 'E FLORIDA AVE / S COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '71555',
                      'time': '15:06:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.689321',
                      'lng': '-104.940629',
                      'location': 'E FLORIDA AVE / S COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '71583',
                      'time': '09:01:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.689305',
                      'lng': '-104.959353',
                      'location': 'E FLORIDA AVE / S UNIVERSITY BLVD',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '72029',
                      'time': '09:32:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.690208',
                      'lng': '-104.959349',
                      'location': '1450 S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '72471',
                      'time': '13:50:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.689314',
                      'lng': '-104.960596',
                      'location': '2300-BLK E FLORIDA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '72659',
                      'time': '07:41:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.689314',
                      'lng': '-104.960596',
                      'location': 'E FLORIDA AVE / S YORK ST',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '72670',
                      'time': '20:40:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.689321',
                      'lng': '-104.940629',
                      'location': 'S COLORADO BLVD / E FLORIDA AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '72775',
                      'time': '20:04:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.689321',
                      'lng': '-104.940629',
                      'location': '1500 S COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '73819',
                      'time': '22:01:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.689321',
                      'lng': '-104.940629',
                      'location': 'S COLORADO BLVD / E FLORIDA AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '73826',
                      'time': '16:45:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.691134',
                      'lng': '-104.973426',
                      'location': 'E ARKANSAS AVE / S DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '74244',
                      'time': '00:05:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.690002',
                      'lng': '-104.973418',
                      'location': 'I25 NB / S DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '74306',
                      'time': '16:20:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.689321',
                      'lng': '-104.940629',
                      'location': 'E FLORIDA AVE / S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '74471',
                      'time': '13:11:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.691148',
                      'lng': '-104.959344',
                      'location': '1400 S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '74910',
                      'time': '13:49:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.691148',
                      'lng': '-104.959344',
                      'location': 'S UNIVERSITY BLVD / E ARKANSAS AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '74925',
                      'time': '23:52:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.691134',
                      'lng': '-104.973426',
                      'location': 'S DOWNING ST / E ARKANSAS AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '76108',
                      'time': '20:50:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.691148',
                      'lng': '-104.959344',
                      'location': 'E ARKANSAS AVE / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '76753',
                      'time': '23:02:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.692954',
                      'lng': '-104.967531',
                      'location': 'E LOUISIANA AVE / S GILPIN ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '81573',
                      'time': '22:37:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.692982',
                      'lng': '-104.975768',
                      'location': 'E LOUISIANA AVE / S OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '81890',
                      'time': '00:24:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.692972',
                      'lng': '-104.973414',
                      'location': 'E LOUISIANA AVE / S DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '82053',
                      'time': '16:12:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.692972',
                      'lng': '-104.973414',
                      'location': 'S DOWNING ST / E LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '82058',
                      'time': '04:34:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.692972',
                      'lng': '-104.973414',
                      'location': 'E LOUISIANA AVE / S DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '82067',
                      'time': '23:26:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.69295',
                      'lng': '-104.965219',
                      'location': 'E LOUISIANA AVE / S HIGH ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '82346',
                      'time': '23:30:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.692954',
                      'lng': '-104.967531',
                      'location': 'E LOUISIANA AVE / S GILPIN ST',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '82482',
                      'time': '14:09:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.692954',
                      'lng': '-104.967531',
                      'location': '1700 E LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '82668',
                      'time': '11:50:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.692978',
                      'lng': '-104.974596',
                      'location': 'E LOUISIANA AVE / S CORONA ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '82737',
                      'time': '23:48:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.692963',
                      'lng': '-104.971067',
                      'location': 'E LOUISIANA AVE / S LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '82741',
                      'time': '13:12:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.692958',
                      'lng': '-104.956975',
                      'location': 'E LOUISIANA AVE / S COLUMBINE ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '82826',
                      'time': '14:50:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.692942',
                      'lng': '-104.94063',
                      'location': 'S COLORADO BLVD / E LOUISIANA AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '82884',
                      'time': '00:00:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.692963',
                      'lng': '-104.959343',
                      'location': 'S UNIVERSITY BLVD / E LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '83311',
                      'time': '14:13:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.692963',
                      'lng': '-104.959343',
                      'location': 'S UNIVERSITY BLVD / E LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '83312',
                      'time': '14:13:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.692963',
                      'lng': '-104.962903',
                      'location': 'E LOUISIANA AVE / S VINE ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '84051',
                      'time': '05:01:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.694774',
                      'lng': '-104.959337',
                      'location': 'E ARIZONA AVE / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '86202',
                      'time': '13:52:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.694757',
                      'lng': '-104.941877',
                      'location': 'E ARIZONA AVE / S HARRISON ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '86905',
                      'time': '10:08:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.694774',
                      'lng': '-104.96405',
                      'location': '1200 S RACE ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '87434',
                      'time': '03:35:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.694756',
                      'lng': '-104.940633',
                      'location': '1200 S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '87554',
                      'time': '23:06:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.694756',
                      'lng': '-104.940633',
                      'location': 'S COLORADO BLVD / E ARIZONA AVE',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '88149',
                      'time': '00:59:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.694774',
                      'lng': '-104.959337',
                      'location': '1200-BLK S UNIVERSITY BLVD',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '88226',
                      'time': '07:26:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.694765',
                      'lng': '-104.950029',
                      'location': 'S STEELE ST / E ARIZONA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '88692',
                      'time': '03:57:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.694765',
                      'lng': '-104.950029',
                      'location': 'S STEELE ST / E ARIZONA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '88696',
                      'time': '00:43:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.695783',
                      'lng': '-104.980391',
                      'location': 'S PEARL ST / E BUCHTEL BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '88999',
                      'time': '01:30:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.696627',
                      'lng': '-104.979206',
                      'location': 'E MISSISSIPPI AVE / S WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '96210',
                      'time': '22:41:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.696583',
                      'lng': '-104.959321',
                      'location': 'E MISSISSIPPI AVE / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '96383',
                      'time': '13:38:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.696583',
                      'lng': '-104.959321',
                      'location': 'E MISSISSIPPI AVE / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '96403',
                      'time': '23:19:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.696585',
                      'lng': '-104.961736',
                      'location': 'E MISSISSIPPI AVE / S GAYLORD ST',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '98174',
                      'time': '19:16:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '3',
                      'lat': '39.696585',
                      'lng': '-104.961736',
                      'location': 'E MISSISSIPPI AVE / S GAYLORD ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '98177',
                      'time': '00:34:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.696723',
                      'lng': '-104.981507',
                      'location': 'E BUCHTEL BLVD / S PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '98241',
                      'time': '22:39:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.697113',
                      'lng': '-104.982726',
                      'location': 'I25 SB / S LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '99309',
                      'time': '22:49:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.696571',
                      'lng': '-104.940612',
                      'location': 'S COLORADO BLVD / E MISSISSIPPI AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '100167',
                      'time': '01:58:27',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.698434',
                      'lng': '-104.975758',
                      'location': 'S OGDEN ST / E TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '101134',
                      'time': '14:59:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.698397',
                      'lng': '-104.959329',
                      'location': 'S UNIVERSITY BLVD / E TENNESSEE AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '101177',
                      'time': '15:21:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.698424',
                      'lng': '-104.980401',
                      'location': 'E TENNESSEE AVE / S PEARL ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '101650',
                      'time': '00:24:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.698429',
                      'lng': '-104.979242',
                      'location': 'S WASHINGTON ST / E TENNESSEE AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '101699',
                      'time': '09:22:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.69838',
                      'lng': '-104.940744',
                      'location': 'S COLORADO BLVD / E TENNESSEE AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '101925',
                      'time': '20:59:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.698392',
                      'lng': '-104.958103',
                      'location': 'E TENNESSEE AVE / S JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '102075',
                      'time': '01:36:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.698409',
                      'lng': '-104.982771',
                      'location': '1000 S LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '103246',
                      'time': '23:20:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.69838',
                      'lng': '-104.940744',
                      'location': '1000 S COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '103623',
                      'time': '02:14:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.699914',
                      'lng': '-104.940702',
                      'location': '915 S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '105526',
                      'time': '02:22:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.700204',
                      'lng': '-104.973389',
                      'location': 'E KENTUCKY AVE / S DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '109177',
                      'time': '03:34:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.700258',
                      'lng': '-104.978102',
                      'location': 'S CLARKSON ST / E KENTUCKY AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '109866',
                      'time': '00:11:27',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.701596',
                      'lng': '-104.987422',
                      'location': 'S BROADWAY ST / I25 NB',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '112297',
                      'time': '00:38:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.701918',
                      'lng': '-104.986268',
                      'location': '800 S LINCOLN ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '113291',
                      'time': '22:03:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.701998',
                      'lng': '-104.98627',
                      'location': 'S LINCOLN ST / E OHIO AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '113584',
                      'time': '15:01:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.702021',
                      'lng': '-104.97927',
                      'location': 'E OHIO AVE / S WASHINGTON ST',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '113658',
                      'time': '08:51:57',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.702021',
                      'lng': '-104.97927',
                      'location': 'E OHIO AVE / S WASHINGTON ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '113660',
                      'time': '08:50:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.702021',
                      'lng': '-104.97927',
                      'location': 'S WASHINGTON ST / E OHIO AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '113661',
                      'time': '09:16:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.701596',
                      'lng': '-104.987422',
                      'location': 'S BROADWAY ST / I25 NB',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '113715',
                      'time': '22:00:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.702001',
                      'lng': '-104.987253',
                      'location': 'S BROADWAY ST / E OHIO AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '114165',
                      'time': '17:40:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.701998',
                      'lng': '-104.98627',
                      'location': 'S LINCOLN ST / E OHIO AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '114219',
                      'time': '10:16:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.702001',
                      'lng': '-104.987253',
                      'location': 'E OHIO AVE / S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '114615',
                      'time': '22:13:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.701998',
                      'lng': '-104.98627',
                      'location': 'S LINCOLN ST / E OHIO AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '114846',
                      'time': '14:50:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.701995',
                      'lng': '-104.983943',
                      'location': 'E OHIO AVE / S GRANT ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '114861',
                      'time': '08:16:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.702032',
                      'lng': '-104.959334',
                      'location': 'S UNIVERSITY BLVD / E OHIO AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '116923',
                      'time': '20:32:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.702032',
                      'lng': '-104.959334',
                      'location': 'E OHIO AVE / S UNIVERSITY BLVD',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '116925',
                      'time': '23:57:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.702032',
                      'lng': '-104.959334',
                      'location': 'E OHIO AVE / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '116935',
                      'time': '19:25:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.702057',
                      'lng': '-104.973384',
                      'location': '800 S DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '118146',
                      'time': '08:16:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.702076',
                      'lng': '-104.940695',
                      'location': '800 S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '118212',
                      'time': '00:37:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.703881',
                      'lng': '-104.987489',
                      'location': 'S BROADWAY ST / E EXPOSITION AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '118561',
                      'time': '03:37:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.703879',
                      'lng': '-104.986275',
                      'location': 'S LINCOLN ST / E EXPOSITION AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '118598',
                      'time': '15:43:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Supervisor Cancelled Inc',
                      'district': '3',
                      'lat': '39.703879',
                      'lng': '-104.986275',
                      'location': 'E EXPOSITION AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '118608',
                      'time': '13:54:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.703881',
                      'lng': '-104.987489',
                      'location': '700-BLK S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '119198',
                      'time': '02:46:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.703881',
                      'lng': '-104.987489',
                      'location': '700 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '119207',
                      'time': '02:49:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.703879',
                      'lng': '-104.986275',
                      'location': 'E EXPOSITION AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '119236',
                      'time': '00:36:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.703862',
                      'lng': '-104.973379',
                      'location': 'S DOWNING ST / E EXPOSITION AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '119805',
                      'time': '00:06:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.703881',
                      'lng': '-104.987489',
                      'location': 'S BROADWAY ST / E EXPOSITION AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '119818',
                      'time': '22:19:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.703881',
                      'lng': '-104.987489',
                      'location': '700-BLK S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '120440',
                      'time': '19:08:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.703881',
                      'lng': '-104.985121',
                      'location': 'E EXPOSITION AVE / S SHERMAN ST',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '120500',
                      'time': '00:16:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.703866',
                      'lng': '-104.968713',
                      'location': 'S FRANKLIN ST / E EXPOSITION AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '120563',
                      'time': '01:05:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.703864',
                      'lng': '-104.95936',
                      'location': '700 S UNIVERSITY BLVD',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '121842',
                      'time': '21:04:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.703831',
                      'lng': '-104.943479',
                      'location': 'E EXPOSITION AVE / S HARRISON ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '122593',
                      'time': '22:33:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.703862',
                      'lng': '-104.960559',
                      'location': '700-BLK S YORK ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '122923',
                      'time': '15:15:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.705723',
                      'lng': '-104.986303',
                      'location': '600 S LINCOLN ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '123528',
                      'time': '23:57:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.70573',
                      'lng': '-104.987558',
                      'location': '600-BLK S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '123565',
                      'time': '21:47:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.70573',
                      'lng': '-104.987558',
                      'location': 'E CENTER AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '123583',
                      'time': '02:47:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.705723',
                      'lng': '-104.986303',
                      'location': 'S LINCOLN ST / E CENTER AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '124159',
                      'time': '00:40:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.70573',
                      'lng': '-104.987558',
                      'location': '600 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '124252',
                      'time': '22:29:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.70573',
                      'lng': '-104.987558',
                      'location': '600 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '124755',
                      'time': '23:42:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.705704',
                      'lng': '-104.983982',
                      'location': 'E CENTER AVE / S GRANT ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '124780',
                      'time': '10:43:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.705711',
                      'lng': '-104.98514',
                      'location': 'E CENTER AVE / S SHERMAN ST',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '124788',
                      'time': '19:32:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.705711',
                      'lng': '-104.98514',
                      'location': 'E CENTER AVE / S SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '124791',
                      'time': '01:07:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.705704',
                      'lng': '-104.982792',
                      'location': 'S LOGAN ST / E CENTER AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '125410',
                      'time': '14:33:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.705671',
                      'lng': '-104.974568',
                      'location': '600 S CORONA ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '125417',
                      'time': '23:12:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.705675',
                      'lng': '-104.961711',
                      'location': 'S GAYLORD ST / E CENTER AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '126214',
                      'time': '06:34:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.705674',
                      'lng': '-104.973373',
                      'location': 'E CENTER AVE / S DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '126805',
                      'time': '01:41:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.705674',
                      'lng': '-104.973373',
                      'location': 'E CENTER AVE / S DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '126808',
                      'time': '01:44:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.707133',
                      'lng': '-104.972191',
                      'location': '600 S Marion St',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '127386',
                      'time': '23:34:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.705667',
                      'lng': '-104.959329',
                      'location': 'E CENTER AVE / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '127489',
                      'time': '13:40:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.70591',
                      'lng': '-104.980434',
                      'location': '588 S PEARL ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '128781',
                      'time': '02:25:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.707243',
                      'lng': '-104.99644',
                      'location': 'S SANTA FE DR / I25 NB',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '129194',
                      'time': '06:51:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.707536',
                      'lng': '-104.987623',
                      'location': 'S BROADWAY ST / E VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '129257',
                      'time': '02:39:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.707507',
                      'lng': '-104.981617',
                      'location': '500 E VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '129674',
                      'time': '23:35:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.707536',
                      'lng': '-104.987623',
                      'location': '500 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '129884',
                      'time': '22:52:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.707526',
                      'lng': '-104.986351',
                      'location': '500-BLK S LINCOLN ST',
                      'outcome': 'arrest',
                      'precinct': '312',
                      'raw_row_number': '129993',
                      'time': '00:44:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.707511',
                      'lng': '-104.982795',
                      'location': 'S LOGAN ST / E VIRGINIA AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '130012',
                      'time': '00:24:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.707536',
                      'lng': '-104.987623',
                      'location': '500 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '130375',
                      'time': '00:33:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.707497',
                      'lng': '-104.980449',
                      'location': 'E VIRGINIA AVE / S PEARL ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '130428',
                      'time': '01:02:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'File Only',
                      'district': '3',
                      'lat': '39.708187',
                      'lng': '-104.981518',
                      'location': '460 S PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '130773',
                      'time': '05:31:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.707536',
                      'lng': '-104.987623',
                      'location': '500 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '131131',
                      'time': '04:40:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '3',
                      'lat': '39.707536',
                      'lng': '-104.987623',
                      'location': 'S BROADWAY ST / W VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '131775',
                      'time': '01:32:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.707536',
                      'lng': '-104.987623',
                      'location': 'S BROADWAY ST / E VIRGINIA AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '132272',
                      'time': '02:16:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.707491',
                      'lng': '-104.971026',
                      'location': 'E VIRGINIA AVE / S LAFAYETTE ST',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '132633',
                      'time': '22:47:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.709337',
                      'lng': '-104.987598',
                      'location': 'S BROADWAY ST / E DAKOTA AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '134068',
                      'time': '08:16:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.709337',
                      'lng': '-104.987598',
                      'location': 'E DAKOTA AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '134097',
                      'time': '01:47:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.709337',
                      'lng': '-104.987598',
                      'location': 'S BROADWAY ST / E DAKOTA AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '134171',
                      'time': '22:49:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.710239',
                      'lng': '-104.987582',
                      'location': 'S BROADWAY ST / W NEVADA PL',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '134794',
                      'time': '07:43:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.709337',
                      'lng': '-104.987598',
                      'location': '400 S BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '134828',
                      'time': '22:34:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.709337',
                      'lng': '-104.987598',
                      'location': '400 S BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '136756',
                      'time': '23:17:26',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.709337',
                      'lng': '-104.987598',
                      'location': '400 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '136783',
                      'time': '00:48:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.709333',
                      'lng': '-104.986392',
                      'location': '400 S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '136810',
                      'time': '01:04:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.709333',
                      'lng': '-104.986392',
                      'location': 'S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '136841',
                      'time': '18:53:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.710718',
                      'lng': '-104.987578',
                      'location': '323 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '137572',
                      'time': '23:14:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.710718',
                      'lng': '-104.987578',
                      'location': '323 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '137573',
                      'time': '23:14:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.709296',
                      'lng': '-104.976891',
                      'location': '400 S EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '139336',
                      'time': '23:10:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.709295',
                      'lng': '-104.974546',
                      'location': 'S CORONA ST / E DAKOTA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '139458',
                      'time': '22:51:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.709295',
                      'lng': '-104.974546',
                      'location': '400 S CORONA ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '139459',
                      'time': '23:26:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.709295',
                      'lng': '-104.974546',
                      'location': '1100 E DAKOTA AVE',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '139463',
                      'time': '23:13:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.709296',
                      'lng': '-104.973376',
                      'location': '400-BLK S DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '139469',
                      'time': '17:48:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.709296',
                      'lng': '-104.973376',
                      'location': 'S DOWNING ST / E DAKOTA AVE',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '139486',
                      'time': '06:18:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.709303',
                      'lng': '-104.961707',
                      'location': 'E DAKOTA AVE / S GAYLORD ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '139602',
                      'time': '14:47:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.709301',
                      'lng': '-104.959327',
                      'location': 'S UNIVERSITY BLVD / E DAKOTA AVE',
                      'outcome': 'warning',
                      'precinct': '312',
                      'raw_row_number': '139623',
                      'time': '03:39:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.709301',
                      'lng': '-104.959327',
                      'location': 'E DAKOTA AVE / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '139639',
                      'time': '06:47:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.710239',
                      'lng': '-104.987582',
                      'location': 'S BROADWAY ST / W NEVADA PL',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '141288',
                      'time': '09:47:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.709136',
                      'lng': '-104.987599',
                      'location': '411 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '312',
                      'raw_row_number': '141547',
                      'time': '10:24:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.709449',
                      'lng': '-104.996313',
                      'location': '400-BLK S SANTA FE DR',
                      'outcome': 'citation',
                      'precinct': '312',
                      'raw_row_number': '142059',
                      'time': '02:33:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '313': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.66763',
                      'lng': '-104.964108',
                      'location': 'E YALE AVE / S RACE ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '22023',
                      'time': '20:10:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.669479',
                      'lng': '-104.986351',
                      'location': 'S LINCOLN ST / E VASSAR AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '23273',
                      'time': '21:53:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.669492',
                      'lng': '-104.973475',
                      'location': 'S DOWNING ST / E VASSAR AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '25169',
                      'time': '17:04:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.671288',
                      'lng': '-104.987584',
                      'location': '2500 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '25292',
                      'time': '22:18:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.671288',
                      'lng': '-104.987584',
                      'location': '2500 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '25293',
                      'time': '22:18:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.673089',
                      'lng': '-104.987581',
                      'location': 'E WESLEY AVE / S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '25741',
                      'time': '22:04:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.673091',
                      'lng': '-104.986351',
                      'location': 'S LINCOLN ST / E WESLEY AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '26384',
                      'time': '12:43:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.674892',
                      'lng': '-104.987575',
                      'location': 'W ILIFF AVE / S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '27340',
                      'time': '21:42:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.674892',
                      'lng': '-104.987575',
                      'location': 'S BROADWAY ST / E ILIFF AVE',
                      'outcome': 'warning',
                      'precinct': '313',
                      'raw_row_number': '27477',
                      'time': '22:02:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.670823',
                      'lng': '-104.973468',
                      'location': '2525 S DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '27771',
                      'time': '17:30:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.674101',
                      'lng': '-104.994335',
                      'location': '2300-BLK S SANTA FE DR',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '27920',
                      'time': '14:44:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.674845',
                      'lng': '-104.965245',
                      'location': 'E ILIFF AVE / S HIGH ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '28800',
                      'time': '00:37:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.674862',
                      'lng': '-104.968763',
                      'location': 'E ILIFF AVE / S FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '29421',
                      'time': '02:59:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.676706',
                      'lng': '-104.987574',
                      'location': 'S BROADWAY ST / E WARREN AVE',
                      'outcome': 'warning',
                      'precinct': '313',
                      'raw_row_number': '32061',
                      'time': '01:22:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.676662',
                      'lng': '-104.965237',
                      'location': 'E WARREN AVE / S HIGH ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '33367',
                      'time': '23:21:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Detox Van',
                      'district': '3',
                      'lat': '39.676662',
                      'lng': '-104.965237',
                      'location': '2200-BLK S HIGH ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '33372',
                      'time': '02:04:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.67815',
                      'lng': '-104.987568',
                      'location': '2120 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '33731',
                      'time': '09:56:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.67835',
                      'lng': '-104.993393',
                      'location': 'W EVANS AVE / S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '33777',
                      'time': '21:36:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.676662',
                      'lng': '-104.965237',
                      'location': 'S HIGH ST / E WARREN AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '33866',
                      'time': '23:37:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.676706',
                      'lng': '-104.987574',
                      'location': '2200 S BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '313',
                      'raw_row_number': '33916',
                      'time': '22:22:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.677409',
                      'lng': '-104.987571',
                      'location': '2160 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '34229',
                      'time': '10:21:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.677409',
                      'lng': '-104.987571',
                      'location': '2160 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '34235',
                      'time': '00:56:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.677409',
                      'lng': '-104.987571',
                      'location': '2160 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '34251',
                      'time': '23:38:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678479',
                      'lng': '-104.989958',
                      'location': 'W EVANS AVE / S BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '35115',
                      'time': '02:11:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678479',
                      'lng': '-104.989958',
                      'location': 'W EVANS AVE / S BANNOCK ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '35267',
                      'time': '21:43:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.678479',
                      'lng': '-104.989958',
                      'location': 'W EVANS AVE / S BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '35400',
                      'time': '15:21:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678514',
                      'lng': '-104.988795',
                      'location': 'W EVANS AVE / S ACOMA ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '36927',
                      'time': '22:11:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.67852',
                      'lng': '-104.987567',
                      'location': '2100 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '37011',
                      'time': '23:50:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.67852',
                      'lng': '-104.987567',
                      'location': '2100-Blk S BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '313',
                      'raw_row_number': '37028',
                      'time': '22:45:17',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.67852',
                      'lng': '-104.987567',
                      'location': 'S BROADWAY ST / E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '37054',
                      'time': '01:53:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.67852',
                      'lng': '-104.987567',
                      'location': 'S BROADWAY ST / E EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '37089',
                      'time': '08:11:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678479',
                      'lng': '-104.989958',
                      'location': 'W EVANS AVE / S BANNOCK ST',
                      'outcome': 'warning',
                      'precinct': '313',
                      'raw_row_number': '37113',
                      'time': '16:50:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.67852',
                      'lng': '-104.987567',
                      'location': '2100 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '38273',
                      'time': '23:36:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678513',
                      'lng': '-104.973431',
                      'location': 'S DOWNING ST / E EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '39568',
                      'time': '23:14:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.678561',
                      'lng': '-104.985224',
                      'location': '2100-BLK S SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '39612',
                      'time': '20:08:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.678554',
                      'lng': '-104.98637',
                      'location': 'E EVANS AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '40056',
                      'time': '21:12:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678554',
                      'lng': '-104.98637',
                      'location': 'S LINCOLN ST / E EVANS AVE',
                      'outcome': 'warning',
                      'precinct': '313',
                      'raw_row_number': '40085',
                      'time': '03:29:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.678554',
                      'lng': '-104.98637',
                      'location': 'E EVANS AVE / S LINCOLN ST',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '40088',
                      'time': '15:15:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'File Only',
                      'district': '3',
                      'lat': '39.678554',
                      'lng': '-104.98637',
                      'location': 'E EVANS AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '40554',
                      'time': '09:00:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.678554',
                      'lng': '-104.98637',
                      'location': 'E EVANS AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '40674',
                      'time': '12:58:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.678497',
                      'lng': '-104.969918',
                      'location': 'E EVANS AVE / S HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '40760',
                      'time': '05:29:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678565',
                      'lng': '-104.982886',
                      'location': 'S LOGAN ST / E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '40889',
                      'time': '22:09:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.678554',
                      'lng': '-104.98637',
                      'location': '2100-BLK-BROADWAY S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '41274',
                      'time': '16:48:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed,T -',
                      'district': '3',
                      'lat': '39.67847',
                      'lng': '-104.965232',
                      'location': '2100-BLK S HIGH ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '41424',
                      'time': '22:02:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.67847',
                      'lng': '-104.965232',
                      'location': 'E EVANS AVE / S HIGH ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '41436',
                      'time': '02:32:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.67847',
                      'lng': '-104.965232',
                      'location': 'E EVANS AVE / S HIGH ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '41442',
                      'time': '21:50:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678554',
                      'lng': '-104.98637',
                      'location': 'E EVANS AVE / S LINCOLN ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '41750',
                      'time': '09:00:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678565',
                      'lng': '-104.982886',
                      'location': '2100 S LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '42278',
                      'time': '22:22:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.67857',
                      'lng': '-104.980523',
                      'location': 'E EVANS AVE / S PEARL ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '42950',
                      'time': '23:47:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.67851',
                      'lng': '-104.964072',
                      'location': 'E EVANS AVE / S RACE ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '43784',
                      'time': '02:19:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.680339',
                      'lng': '-104.982869',
                      'location': 'E ASBURY AVE / S LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '47912',
                      'time': '10:34:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.680253',
                      'lng': '-104.959389',
                      'location': 'S UNIVERSITY BLVD / E ASBURY AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '47962',
                      'time': '01:48:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.680325',
                      'lng': '-104.988794',
                      'location': '2000 S ACOMA ST',
                      'outcome': 'warning',
                      'precinct': '313',
                      'raw_row_number': '48566',
                      'time': '07:25:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.680288',
                      'lng': '-104.991932',
                      'location': '2000-BLK S DELAWARE ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '48918',
                      'time': '18:52:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.680328',
                      'lng': '-104.987571',
                      'location': '2000-BLK S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '49080',
                      'time': '22:54:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.681903',
                      'lng': '-104.979335',
                      'location': '1914 S WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '49182',
                      'time': '12:46:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.680253',
                      'lng': '-104.959389',
                      'location': 'S UNIVERSITY BLVD / E ASBURY AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '49312',
                      'time': '08:47:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.680985',
                      'lng': '-104.992717',
                      'location': '2700 S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '50853',
                      'time': '22:13:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.682149',
                      'lng': '-104.987569',
                      'location': 'E JEWELL AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '52229',
                      'time': '14:59:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.682153',
                      'lng': '-104.986348',
                      'location': 'E JEWELL AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '52465',
                      'time': '00:08:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.682139',
                      'lng': '-104.971072',
                      'location': 'E JEWELL AVE / S LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '52575',
                      'time': '14:28:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.682131',
                      'lng': '-104.98995',
                      'location': '1900 S BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '53515',
                      'time': '15:21:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.682149',
                      'lng': '-104.987569',
                      'location': '1900-BLK S BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '53826',
                      'time': '22:08:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.682138',
                      'lng': '-104.988793',
                      'location': 'W JEWELL AVE / S ACOMA ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '54065',
                      'time': '23:26:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.683986',
                      'lng': '-104.985178',
                      'location': '200-BLK E COLORADO AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '54460',
                      'time': '23:32:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.683988',
                      'lng': '-104.982837',
                      'location': '1800 S LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '54483',
                      'time': '08:48:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.683966',
                      'lng': '-104.987546',
                      'location': '1800-BLK S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '55069',
                      'time': '08:15:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.683966',
                      'lng': '-104.988777',
                      'location': 'W COLORADO AVE / S ACOMA ST',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '55192',
                      'time': '01:00:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.683966',
                      'lng': '-104.987546',
                      'location': '1800-BLK S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '56174',
                      'time': '21:40:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.684852',
                      'lng': '-104.988769',
                      'location': '1750 S ACOMA ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '56617',
                      'time': '07:28:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.684576',
                      'lng': '-104.987542',
                      'location': '1765 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '57089',
                      'time': '11:37:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684761',
                      'lng': '-104.987541',
                      'location': '1755 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '57574',
                      'time': '14:21:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.685759',
                      'lng': '-104.985155',
                      'location': '1700-BLK S SHERMAN ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '59088',
                      'time': '12:11:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.685833',
                      'lng': '-104.987533',
                      'location': '1695 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '61074',
                      'time': '00:39:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.685778',
                      'lng': '-104.987534',
                      'location': 'E MEXICO AVE / W MEXICO AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '61157',
                      'time': '00:17:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.686804',
                      'lng': '-104.968727',
                      'location': 'S FRANKLIN ST / E BUCHTEL BLVD',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '63882',
                      'time': '07:50:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.687565',
                      'lng': '-104.986293',
                      'location': 'E IOWA AVE / S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '64004',
                      'time': '23:12:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.687574',
                      'lng': '-104.987513',
                      'location': 'S BROADWAY ST / E IOWA AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '64051',
                      'time': '15:13:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.687574',
                      'lng': '-104.992064',
                      'location': 'W IOWA AVE / S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '64573',
                      'time': '23:12:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.687565',
                      'lng': '-104.986293',
                      'location': '1600-BLK-BROADWAY S LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '65732',
                      'time': '21:44:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.688092',
                      'lng': '-104.982794',
                      'location': '1570 S LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '65875',
                      'time': '10:03:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.687816',
                      'lng': '-104.987511',
                      'location': '1585 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '66281',
                      'time': '15:56:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.687577',
                      'lng': '-104.988741',
                      'location': 'S ACOMA ST / W IOWA AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '66502',
                      'time': '08:35:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.687581',
                      'lng': '-104.980442',
                      'location': 'E IOWA AVE / S PEARL ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '66656',
                      'time': '08:13:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.688655',
                      'lng': '-104.987505',
                      'location': '1540 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '67681',
                      'time': '12:08:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'No Police Needed',
                      'district': '3',
                      'lat': '39.688673',
                      'lng': '-104.987505',
                      'location': '1539 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '68289',
                      'time': '12:06:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.689402',
                      'lng': '-104.988725',
                      'location': '1500-BROADWAY S ACOMA ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '69370',
                      'time': '02:10:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.68941',
                      'lng': '-104.986284',
                      'location': 'S LINCOLN ST / E FLORIDA AVE',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '69449',
                      'time': '21:54:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.6894',
                      'lng': '-104.982792',
                      'location': 'S LOGAN ST / E FLORIDA AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '69473',
                      'time': '17:28:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.689399',
                      'lng': '-104.992175',
                      'location': 'W FLORIDA AVE / S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '69620',
                      'time': '12:43:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.689399',
                      'lng': '-104.992175',
                      'location': 'S SANTA FE DR / W FLORIDA AVE',
                      'outcome': 'warning',
                      'precinct': '313',
                      'raw_row_number': '69811',
                      'time': '23:36:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.689399',
                      'lng': '-104.992175',
                      'location': 'S SANTA FE DR / W FLORIDA AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '69850',
                      'time': '21:58:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.689402',
                      'lng': '-104.988725',
                      'location': '1500 S ACOMA ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '70015',
                      'time': '05:09:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.6894',
                      'lng': '-104.9875',
                      'location': 'S BROADWAY ST / W FLORIDA AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '70068',
                      'time': '14:22:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.689406',
                      'lng': '-104.983993',
                      'location': '1500 S GRANT ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '70441',
                      'time': '23:00:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.689386',
                      'lng': '-104.978107',
                      'location': 'S CLARKSON ST / E FLORIDA AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '70564',
                      'time': '22:08:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.6894',
                      'lng': '-104.9875',
                      'location': '1500 S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '70674',
                      'time': '21:59:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.689406',
                      'lng': '-104.983993',
                      'location': 'E FLORIDA AVE / S GRANT ST',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '70752',
                      'time': '15:27:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.689373',
                      'lng': '-104.974602',
                      'location': 'E FLORIDA AVE / S CORONA ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '70784',
                      'time': '16:29:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.689398',
                      'lng': '-104.981589',
                      'location': '1500 S PENNSYLVANIA ST',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '70887',
                      'time': '23:11:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.689395',
                      'lng': '-104.980444',
                      'location': '1500 S PEARL ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '70912',
                      'time': '00:36:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.6894',
                      'lng': '-104.9875',
                      'location': 'S BROADWAY ST / E FLORIDA AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '71317',
                      'time': '12:50:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.689399',
                      'lng': '-104.992175',
                      'location': '1500 S SANTA FE DR',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '71701',
                      'time': '23:48:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.689885',
                      'lng': '-104.98159',
                      'location': '1471 S PENNSYLVANIA ST',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '71796',
                      'time': '11:34:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.691184',
                      'lng': '-104.986273',
                      'location': '100-BLK E ARKANSAS AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '74230',
                      'time': '23:06:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.691169',
                      'lng': '-104.98748',
                      'location': 'S BROADWAY ST / E ARKANSAS AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '74575',
                      'time': '22:22:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.691169',
                      'lng': '-104.98748',
                      'location': 'S BROADWAY ST / E ARKANSAS AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '74749',
                      'time': '06:40:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.691169',
                      'lng': '-104.98748',
                      'location': 'S BROADWAY ST / E ARKANSAS AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '74761',
                      'time': '07:46:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.691173',
                      'lng': '-104.988699',
                      'location': 'S ACOMA ST / W ARKANSAS AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '74873',
                      'time': '00:34:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.691169',
                      'lng': '-104.98748',
                      'location': 'E ARKANSAS AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '76578',
                      'time': '23:04:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.693023',
                      'lng': '-104.992504',
                      'location': 'S SANTA FE DR / W LOUISIANA AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '81175',
                      'time': '05:56:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.693019',
                      'lng': '-104.987468',
                      'location': 'S BROADWAY ST / E LOUISIANA AVE',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '81316',
                      'time': '11:40:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.693023',
                      'lng': '-104.983973',
                      'location': '1300 S GRANT ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '81515',
                      'time': '23:02:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.693008',
                      'lng': '-104.982777',
                      'location': '1300-BLK-S S LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '81990',
                      'time': '00:11:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.693078',
                      'lng': '-104.992503',
                      'location': '1295 S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '82352',
                      'time': '22:08:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.693008',
                      'lng': '-104.982777',
                      'location': 'E LOUISIANA AVE / S LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '82594',
                      'time': '02:47:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.693008',
                      'lng': '-104.982777',
                      'location': 'S LOGAN ST / E LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '82608',
                      'time': '22:51:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.693618',
                      'lng': '-104.987462',
                      'location': '1265 S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '82819',
                      'time': '16:51:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.693022',
                      'lng': '-104.986259',
                      'location': '1300 S LINCOLN ST',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '83196',
                      'time': '23:22:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.693007',
                      'lng': '-104.981572',
                      'location': '500 E LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '83223',
                      'time': '08:03:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.694799',
                      'lng': '-104.987449',
                      'location': 'E ARIZONA AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '84170',
                      'time': '22:34:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.694688',
                      'lng': '-104.992484',
                      'location': '1207 S SANTA FE DR',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '86864',
                      'time': '21:40:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.696634',
                      'lng': '-104.987431',
                      'location': 'S BROADWAY ST / E MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '92189',
                      'time': '03:57:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.696634',
                      'lng': '-104.987431',
                      'location': 'E MISSISSIPPI AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '92368',
                      'time': '02:08:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.696652',
                      'lng': '-104.991276',
                      'location': 'S CHEROKEE ST / W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '92533',
                      'time': '21:23:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.696617',
                      'lng': '-104.982771',
                      'location': 'S LOGAN ST / E MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '93172',
                      'time': '02:02:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.69662',
                      'lng': '-104.983943',
                      'location': 'E MISSISSIPPI AVE / S GRANT ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '93895',
                      'time': '04:02:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.696652',
                      'lng': '-104.991276',
                      'location': 'S CHEROKEE ST / W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '93905',
                      'time': '07:03:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.696662',
                      'lng': '-104.991874',
                      'location': 'W MISSISSIPPI AVE / S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '97722',
                      'time': '19:16:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.696662',
                      'lng': '-104.991874',
                      'location': 'W MISSISSIPPI AVE / S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '98351',
                      'time': '23:48:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.698606',
                      'lng': '-104.987455',
                      'location': 'S BROADWAY ST / E Tennessee Ave',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '101223',
                      'time': '14:54:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.698606',
                      'lng': '-104.987455',
                      'location': 'E Tennessee Ave / S BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '101234',
                      'time': '09:58:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.698606',
                      'lng': '-104.987455',
                      'location': 'S BROADWAY ST / E Tennessee Ave',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '102437',
                      'time': '23:23:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.700094',
                      'lng': '-104.992453',
                      'location': 'S SANTA FE DR / S CHEROKEE ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '105378',
                      'time': '07:45:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.700094',
                      'lng': '-104.992453',
                      'location': 'S SANTA FE DR / S CHEROKEE ST',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '105382',
                      'time': '08:52:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.700213',
                      'lng': '-104.987475',
                      'location': 'W KENTUCKY AVE / S BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '106183',
                      'time': '22:56:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.699031',
                      'lng': '-104.991927',
                      'location': '1000 S SANTA FE DR',
                      'outcome': 'arrest',
                      'precinct': '313',
                      'raw_row_number': '106438',
                      'time': '11:36:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.700213',
                      'lng': '-104.987475',
                      'location': 'W KENTUCKY AVE / S BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '108114',
                      'time': '15:52:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.7007',
                      'lng': '-104.992872',
                      'location': '900 S SANTA FE DR',
                      'outcome': 'citation',
                      'precinct': '313',
                      'raw_row_number': '110809',
                      'time': '21:44:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.702207',
                      'lng': '-104.994136',
                      'location': '800 S SANTA FE DR',
                      'outcome': 'NA',
                      'precinct': '313',
                      'raw_row_number': '115681',
                      'time': '07:00:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'}],
             '314': [{'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653049',
                      'lng': '-104.927195',
                      'location': 'E HAMPDEN AVE / S FOREST ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '9177',
                      'time': '02:51:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.653053',
                      'lng': '-104.925197',
                      'location': 'E HAMPDEN AVE / S GRAPE ST',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '9190',
                      'time': '12:39:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.653053',
                      'lng': '-104.925197',
                      'location': 'E HAMPDEN AVE / S GRAPE ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '9196',
                      'time': '02:02:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.653059',
                      'lng': '-104.924205',
                      'location': 'S HUDSON WAY / E HAMPDEN AVE',
                      'outcome': 'arrest',
                      'precinct': '314',
                      'raw_row_number': '9825',
                      'time': '16:43:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.658896',
                      'lng': '-104.929504',
                      'location': '3200-BLK S ELM ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '12449',
                      'time': '16:33:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.663925',
                      'lng': '-104.959434',
                      'location': 'S UNIVERSITY BLVD / E BATES AVE',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '15668',
                      'time': '09:25:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.667361',
                      'lng': '-104.950405',
                      'location': 'S ST PAUL ST / S STEELE ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '20872',
                      'time': '15:25:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.667018',
                      'lng': '-104.947789',
                      'location': 'E YALE WAY / S COOK ST',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '21464',
                      'time': '22:16:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.667472',
                      'lng': '-104.930436',
                      'location': 'S EUDORA ST / E YALE AVE',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '22032',
                      'time': '18:02:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.671888',
                      'lng': '-104.940696',
                      'location': 'E DICKENSON PL / S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '24708',
                      'time': '20:46:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'File Only',
                      'district': '3',
                      'lat': '39.671818',
                      'lng': '-104.940696',
                      'location': '2449 S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '26055',
                      'time': '23:20:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.67257',
                      'lng': '-104.940702',
                      'location': '2432 S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '26290',
                      'time': '23:19:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.671215',
                      'lng': '-104.95939',
                      'location': 'E HARVARD AVE / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '26719',
                      'time': '10:12:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.67303',
                      'lng': '-104.959385',
                      'location': 'E WESLEY AVE / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '27019',
                      'time': '01:59:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.67303',
                      'lng': '-104.959385',
                      'location': 'S UNIVERSITY BLVD / E WESLEY AVE',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '28142',
                      'time': '21:44:38',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.67303',
                      'lng': '-104.959385',
                      'location': '2400 S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '28265',
                      'time': '08:01:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.67303',
                      'lng': '-104.959385',
                      'location': 'S UNIVERSITY BLVD / E WESLEY AVE',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '28275',
                      'time': '22:21:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.673116',
                      'lng': '-104.940706',
                      'location': '2400 S COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '314',
                      'raw_row_number': '28486',
                      'time': '22:03:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.674843',
                      'lng': '-104.959381',
                      'location': 'S UNIVERSITY BLVD / E ILIFF AVE',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '28676',
                      'time': '22:04:01',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.674815',
                      'lng': '-104.940718',
                      'location': 'E ILIFF AVE / S COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '30159',
                      'time': '14:31:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.674815',
                      'lng': '-104.940718',
                      'location': 'E ILIFF AVE / S COLORADO BLVD',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '30160',
                      'time': '14:31:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': '2 - Alarm False',
                      'district': '3',
                      'lat': '39.674816',
                      'lng': '-104.940443',
                      'location': '4025 E ILIFF AVE',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '30483',
                      'time': '03:48:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.676637',
                      'lng': '-104.93959',
                      'location': '2200-BLK S ALBION ST',
                      'outcome': 'arrest',
                      'precinct': '314',
                      'raw_row_number': '32277',
                      'time': '23:52:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'CIT Report',
                      'district': '3',
                      'lat': '39.676637',
                      'lng': '-104.93959',
                      'location': '2200 S ALBION ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '32838',
                      'time': '21:53:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.676636',
                      'lng': '-104.937425',
                      'location': 'E WARREN AVE / S BELLAIRE ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '32896',
                      'time': '23:22:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.676416',
                      'lng': '-104.94073',
                      'location': '2210 S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '33846',
                      'time': '15:09:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.676621',
                      'lng': '-104.957937',
                      'location': '2200-UNIV S JOSEPHINE ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '33979',
                      'time': '04:38:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678386',
                      'lng': '-104.955091',
                      'location': 'E EVANS AVE / S CLAYTON ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '38614',
                      'time': '20:42:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678386',
                      'lng': '-104.955091',
                      'location': 'S CLAYTON ST / E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '38622',
                      'time': '23:02:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678426',
                      'lng': '-104.959393',
                      'location': 'E EVANS AVE / S UNIVERSITY BLVD',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '39337',
                      'time': '02:30:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Detox Van',
                      'district': '3',
                      'lat': '39.678426',
                      'lng': '-104.959393',
                      'location': 'S UNIVERSITY BLVD / E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '39338',
                      'time': '02:43:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678428',
                      'lng': '-104.952247',
                      'location': 'E EVANS AVE / S MILWAUKEE ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '40468',
                      'time': '20:09:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678428',
                      'lng': '-104.952247',
                      'location': 'E EVANS AVE / S MILWAUKEE ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '40479',
                      'time': '23:02:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678428',
                      'lng': '-104.952247',
                      'location': 'E EVANS AVE / S MILWAUKEE ST',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '41083',
                      'time': '22:02:31',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678382',
                      'lng': '-104.949409',
                      'location': 'E EVANS AVE / S ADAMS ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '41213',
                      'time': '23:56:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678429',
                      'lng': '-104.957933',
                      'location': 'E EVANS AVE / S JOSEPHINE ST',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '41292',
                      'time': '23:04:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678426',
                      'lng': '-104.959393',
                      'location': 'S UNIVERSITY BLVD / E EVANS AVE',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '41639',
                      'time': '00:36:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.678419',
                      'lng': '-104.9451',
                      'location': 'S MONROE ST / E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '41765',
                      'time': '02:13:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.678419',
                      'lng': '-104.9451',
                      'location': 'E EVANS AVE / S MONROE ST',
                      'outcome': 'arrest',
                      'precinct': '314',
                      'raw_row_number': '41771',
                      'time': '22:45:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.678415',
                      'lng': '-104.940748',
                      'location': 'S COLORADO BLVD / E EVANS AVE',
                      'outcome': 'arrest',
                      'precinct': '314',
                      'raw_row_number': '41838',
                      'time': '00:21:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678449',
                      'lng': '-104.93524',
                      'location': '4500 E EVANS AVE',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '42041',
                      'time': '22:15:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.67845',
                      'lng': '-104.937414',
                      'location': 'E EVANS AVE / S BELLAIRE ST',
                      'outcome': 'arrest',
                      'precinct': '314',
                      'raw_row_number': '42387',
                      'time': '23:26:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678426',
                      'lng': '-104.959393',
                      'location': 'E EVANS AVE / S UNIVERSITY BLVD',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '42437',
                      'time': '23:25:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678452',
                      'lng': '-104.938503',
                      'location': 'E EVANS AVE / S ASH ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '42537',
                      'time': '00:13:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678452',
                      'lng': '-104.938503',
                      'location': 'E EVANS AVE / S ASH ST',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '42541',
                      'time': '22:43:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678453',
                      'lng': '-104.936694',
                      'location': 'E EVANS AVE / S BIRCH ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '42614',
                      'time': '21:56:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.678419',
                      'lng': '-104.9451',
                      'location': 'E EVANS AVE / S MONROE ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '42980',
                      'time': '10:35:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678419',
                      'lng': '-104.9451',
                      'location': 'E EVANS AVE / S MONROE ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '42987',
                      'time': '00:06:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678415',
                      'lng': '-104.940748',
                      'location': 'S COLORADO BLVD / E EVANS AVE',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '43100',
                      'time': '00:11:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678419',
                      'lng': '-104.9451',
                      'location': 'E EVANS AVE / S MONROE ST',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '43461',
                      'time': '23:20:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.678419',
                      'lng': '-104.9451',
                      'location': 'E EVANS AVE / S MONROE ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '43463',
                      'time': '22:38:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.678424',
                      'lng': '-104.947983',
                      'location': 'E EVANS AVE / S COOK ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '44188',
                      'time': '22:16:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.678415',
                      'lng': '-104.940748',
                      'location': 'E EVANS AVE / S COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '314',
                      'raw_row_number': '44885',
                      'time': '02:28:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.679667',
                      'lng': '-104.936703',
                      'location': '2000-BLK S BIRCH ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '45969',
                      'time': '03:35:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.680254',
                      'lng': '-104.957931',
                      'location': 'E ASBURY AVE / S JOSEPHINE ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '48733',
                      'time': '02:03:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.680098',
                      'lng': '-104.940684',
                      'location': 'E COLORADO CENTER DR / S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '48965',
                      'time': '20:24:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.681092',
                      'lng': '-104.949397',
                      'location': 'E BUCHTEL BLVD / S ADAMS ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '51631',
                      'time': '20:57:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.682124',
                      'lng': '-104.956505',
                      'location': 'E JEWELL AVE / S COLUMBINE ST',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '51842',
                      'time': '08:10:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.682045',
                      'lng': '-104.950816',
                      'location': 'S ST PAUL ST / E JEWELL AVE',
                      'outcome': 'warning',
                      'precinct': '314',
                      'raw_row_number': '52442',
                      'time': '07:15:31',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.682788',
                      'lng': '-104.959425',
                      'location': 'E BUCHTEL BLVD / S UNIVERSITY BLVD',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '52745',
                      'time': '13:23:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.683874',
                      'lng': '-104.950806',
                      'location': 'S STEELE ST / S ST PAUL ST',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '55004',
                      'time': '15:29:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.682962',
                      'lng': '-104.940687',
                      'location': 'I25 SB / S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '55237',
                      'time': '01:00:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.682962',
                      'lng': '-104.940687',
                      'location': 'I25 SB / S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '55377',
                      'time': '09:36:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.682962',
                      'lng': '-104.940687',
                      'location': 'I25 SB / S COLORADO BLVD',
                      'outcome': 'arrest',
                      'precinct': '314',
                      'raw_row_number': '55378',
                      'time': '02:00:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.682962',
                      'lng': '-104.940687',
                      'location': 'I25 SB / S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '314',
                      'raw_row_number': '57078',
                      'time': '07:58:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.682962',
                      'lng': '-104.940687',
                      'location': 'I25 SB / S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '314',
                      'raw_row_number': '57206',
                      'time': '00:55:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '321': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711334',
                      'lng': '-104.936565',
                      'location': 'LEETSDALE DR / E ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '153349',
                      'time': '10:57:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711191',
                      'lng': '-104.918787',
                      'location': 'E ALAMEDA AVE / S JASMINE ST',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '153356',
                      'time': '18:05:38',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711197',
                      'lng': '-104.919952',
                      'location': 'E ALAMEDA AVE / S JERSEY ST',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '153377',
                      'time': '14:07:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711282',
                      'lng': '-104.903495',
                      'location': 'S QUEBEC ST / E ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '155271',
                      'time': '02:39:24',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.711282',
                      'lng': '-104.903495',
                      'location': 'E ALAMEDA AVE / S QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '155298',
                      'time': '19:28:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711282',
                      'lng': '-104.903495',
                      'location': '7300-BLK E ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '156287',
                      'time': '02:09:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.711282',
                      'lng': '-104.903495',
                      'location': 'E ALAMEDA AVE / S QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '156423',
                      'time': '22:59:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.714645',
                      'lng': '-104.940695',
                      'location': 'E BAYAUD AVE / S COLORADO BLVD',
                      'outcome': 'citation',
                      'precinct': '321',
                      'raw_row_number': '165346',
                      'time': '12:22:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.713109',
                      'lng': '-104.914192',
                      'location': 'S LOCUST ST / E CEDAR AVE',
                      'outcome': 'citation',
                      'precinct': '321',
                      'raw_row_number': '165966',
                      'time': '15:31:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.712962',
                      'lng': '-104.905325',
                      'location': 'S PONTIAC ST / E CEDAR PL',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '172468',
                      'time': '09:00:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711396',
                      'lng': '-104.938511',
                      'location': '4200 E ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '321',
                      'raw_row_number': '174277',
                      'time': '01:02:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.711298',
                      'lng': '-104.91286',
                      'location': 'S MONACO ST / E ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '321',
                      'raw_row_number': '175192',
                      'time': '00:43:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.711298',
                      'lng': '-104.91286',
                      'location': 'E ALAMEDA AVE / S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '176364',
                      'time': '23:02:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.713062',
                      'lng': '-104.938504',
                      'location': 'LEETSDALE DR / E CEDAR AVE',
                      'outcome': 'citation',
                      'precinct': '321',
                      'raw_row_number': '177314',
                      'time': '15:00:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.7112',
                      'lng': '-104.909689',
                      'location': 'E ALAMEDA AVE / S NIAGARA ST',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '178382',
                      'time': '16:49:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.721994',
                      'lng': '-104.912758',
                      'location': 'N MONACO ST / E 4TH AVE',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '180537',
                      'time': '08:48:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.723275',
                      'lng': '-104.903529',
                      'location': 'E 5TH AVE / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '180949',
                      'time': '03:20:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.718364',
                      'lng': '-104.903689',
                      'location': '100-BLK N QUEBEC ST',
                      'outcome': 'arrest',
                      'precinct': '321',
                      'raw_row_number': '192887',
                      'time': '21:48:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.71706',
                      'lng': '-104.903706',
                      'location': 'E IRVINGTON PL / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '196771',
                      'time': '03:47:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.71706',
                      'lng': '-104.903706',
                      'location': 'S QUEBEC ST / E IRVINGTON PL',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '197345',
                      'time': '22:48:01',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.717818',
                      'lng': '-104.931623',
                      'location': 'E 1ST AVE / N DAHLIA ST',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '198833',
                      'time': '19:21:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.725455',
                      'lng': '-104.903828',
                      'location': 'N QUEBEC ST / E 6TH AVE',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '202210',
                      'time': '23:50:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.725333',
                      'lng': '-104.922804',
                      'location': 'E 6TH AVE / N HOLLY ST',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '205919',
                      'time': '23:12:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.72531',
                      'lng': '-104.939334',
                      'location': 'E 6TH AVE / N ALBION ST',
                      'outcome': 'citation',
                      'precinct': '321',
                      'raw_row_number': '211628',
                      'time': '15:22:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.725316',
                      'lng': '-104.93052',
                      'location': 'E 6TH AVE / N EUDORA ST',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '214377',
                      'time': '02:27:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.72078',
                      'lng': '-104.912761',
                      'location': '300 N MONACO ST',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '215072',
                      'time': '00:53:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.730612',
                      'lng': '-104.903465',
                      'location': '900-BLK N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '229537',
                      'time': '14:34:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.698376',
                      'lng': '-104.865966',
                      'location': 'S HAVANA ST / E Tennessee Ave',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '513753',
                      'time': '02:34:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.696272',
                      'lng': '-104.897403',
                      'location': '1100 S PARKER RD',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '513778',
                      'time': '22:50:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.701446',
                      'lng': '-104.87901',
                      'location': '650 S ALTON WAY',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '513795',
                      'time': '02:14:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.697534',
                      'lng': '-104.875314',
                      'location': '1000 S DAYTON ST',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '514024',
                      'time': '07:57:43',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.701951',
                      'lng': '-104.87535',
                      'location': 'S DAYTON ST / S ALTON WAY',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '514089',
                      'time': '20:44:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'L - Clearance',
                      'district': '3',
                      'lat': '39.718231',
                      'lng': '-104.893747',
                      'location': '8185 E LOWRY BLVD',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '514359',
                      'time': '04:09:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.704519',
                      'lng': '-104.875344',
                      'location': '630 S DAYTON ST',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '514455',
                      'time': '22:31:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.717073',
                      'lng': '-104.899636',
                      'location': 'E LOWRY BLVD / N ROSEMARY ST',
                      'outcome': 'citation',
                      'precinct': '321',
                      'raw_row_number': '514585',
                      'time': '08:32:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.719515',
                      'lng': '-104.899469',
                      'location': 'E 1ST AVE / N ROSLYN ST',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '514701',
                      'time': '19:51:21',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.705613',
                      'lng': '-104.875353',
                      'location': '600 S DAYTON ST',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '518387',
                      'time': '00:53:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.708113',
                      'lng': '-104.879006',
                      'location': 'S CLINTON ST / E ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '518854',
                      'time': '20:49:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.711309',
                      'lng': '-104.892914',
                      'location': 'E FAIRMOUNT DR / E ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '519097',
                      'time': '23:20:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.708113',
                      'lng': '-104.879006',
                      'location': 'S CLINTON ST / E ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '519266',
                      'time': '00:01:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.71531',
                      'lng': '-104.894599',
                      'location': 'E BAYAUD AVE / E FAIRMOUNT DR',
                      'outcome': 'warning',
                      'precinct': '321',
                      'raw_row_number': '519599',
                      'time': '20:50:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.721103',
                      'lng': '-104.88733',
                      'location': '8600 E SPORTS BLVD',
                      'outcome': 'arrest',
                      'precinct': '321',
                      'raw_row_number': '523517',
                      'time': '22:52:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.721095',
                      'lng': '-104.876181',
                      'location': 'E 3RD PL / N DALLAS ST',
                      'outcome': 'citation',
                      'precinct': '321',
                      'raw_row_number': '523524',
                      'time': '10:04:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.721456',
                      'lng': '-104.881787',
                      'location': 'E 5TH AVE / N YOSEMITE WAY',
                      'outcome': 'citation',
                      'precinct': '321',
                      'raw_row_number': '523535',
                      'time': '08:58:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.719482',
                      'lng': '-104.88764',
                      'location': '8400-BLK E SPORTS BLVD',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '524744',
                      'time': '23:38:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.719482',
                      'lng': '-104.88764',
                      'location': '8400 E SPORTS BLVD',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '525161',
                      'time': '23:13:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.725561',
                      'lng': '-104.878615',
                      'location': 'E LOWRY BLVD / N ALTON WAY',
                      'outcome': 'citation',
                      'precinct': '321',
                      'raw_row_number': '525316',
                      'time': '21:54:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.724336',
                      'lng': '-104.88275',
                      'location': '9000 E LOWRY BLVD',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '525645',
                      'time': '22:52:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.725115',
                      'lng': '-104.891969',
                      'location': '555 N UINTA WAY',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '525685',
                      'time': '23:19:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.72556',
                      'lng': '-104.875348',
                      'location': '600-BLK Dayton St',
                      'outcome': 'arrest',
                      'precinct': '321',
                      'raw_row_number': '525769',
                      'time': '02:36:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.721643',
                      'lng': '-104.879521',
                      'location': '9100 E 4TH PL',
                      'outcome': 'NA',
                      'precinct': '321',
                      'raw_row_number': '530522',
                      'time': '09:20:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.722149',
                      'lng': '-104.894879',
                      'location': 'E 1ST AVE / N SPRUCE ST',
                      'outcome': 'citation',
                      'precinct': '321',
                      'raw_row_number': '530561',
                      'time': '08:31:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.722503',
                      'lng': '-104.885952',
                      'location': 'E LOWRY BLVD / N WILLOW ST',
                      'outcome': 'arrest',
                      'precinct': '321',
                      'raw_row_number': '530749',
                      'time': '02:09:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '322': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.678463',
                      'lng': '-104.931936',
                      'location': '4780 E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '42056',
                      'time': '14:12:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.67845',
                      'lng': '-104.933773',
                      'location': 'E EVANS AVE / I25 NB',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '42156',
                      'time': '23:43:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.678463',
                      'lng': '-104.931616',
                      'location': '2100-BLK S DAHLIA ST',
                      'outcome': 'arrest',
                      'precinct': '322',
                      'raw_row_number': '42189',
                      'time': '01:13:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678463',
                      'lng': '-104.931616',
                      'location': 'E EVANS AVE / S DAHLIA ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '42202',
                      'time': '22:36:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.678446',
                      'lng': '-104.933977',
                      'location': 'E EVANS AVE / I25 SB',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '42559',
                      'time': '03:26:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678446',
                      'lng': '-104.933977',
                      'location': 'I25 SB / E EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '42676',
                      'time': '08:20:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678463',
                      'lng': '-104.931616',
                      'location': 'E EVANS AVE / S DAHLIA ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '42825',
                      'time': '22:37:17',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678463',
                      'lng': '-104.931616',
                      'location': 'E EVANS AVE / S DAHLIA ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '43435',
                      'time': '23:18:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678446',
                      'lng': '-104.933977',
                      'location': 'I25 SB / E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '43907',
                      'time': '23:22:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678464',
                      'lng': '-104.925196',
                      'location': 'E EVANS AVE / S GRAPE ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '44131',
                      'time': '01:00:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678462',
                      'lng': '-104.912812',
                      'location': 'E EVANS AVE / S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '44239',
                      'time': '03:43:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678456',
                      'lng': '-104.908201',
                      'location': '6900-7100 E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '44358',
                      'time': '22:24:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678456',
                      'lng': '-104.908201',
                      'location': 'E EVANS AVE / S ONEIDA ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '44497',
                      'time': '20:27:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.678462',
                      'lng': '-104.912812',
                      'location': 'E EVANS AVE / S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '44836',
                      'time': '02:33:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.678472',
                      'lng': '-104.922266',
                      'location': 'S HOLLY ST / E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '45424',
                      'time': '07:20:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678437',
                      'lng': '-104.906184',
                      'location': '7055 E EVANS AVE',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '45697',
                      'time': '23:12:43',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678457',
                      'lng': '-104.909348',
                      'location': '6800 E EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '45722',
                      'time': '23:16:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678471',
                      'lng': '-104.923899',
                      'location': 'E EVANS AVE / S HUDSON ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '45884',
                      'time': '19:56:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.678463',
                      'lng': '-104.915962',
                      'location': 'E EVANS AVE / S LEYDEN ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '46007',
                      'time': '04:17:21',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678472',
                      'lng': '-104.922266',
                      'location': 'E EVANS AVE / S HOLLY ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '46070',
                      'time': '10:45:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678456',
                      'lng': '-104.908201',
                      'location': 'E EVANS AVE / S ONEIDA ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '46232',
                      'time': '22:42:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678462',
                      'lng': '-104.912812',
                      'location': 'E EVANS AVE / S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '46434',
                      'time': '13:48:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.680054',
                      'lng': '-104.912896',
                      'location': 'S MONACO ST / E ASBURY AVE',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '47160',
                      'time': '22:56:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.680399',
                      'lng': '-104.931629',
                      'location': 'S DAHLIA ST / E ASBURY AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '49546',
                      'time': '23:42:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.681253',
                      'lng': '-104.931662',
                      'location': 'S DAHLIA ST / E ATLANTIC PL',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '50262',
                      'time': '21:11:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '3',
                      'lat': '39.681247',
                      'lng': '-104.92227',
                      'location': 'S HOLLY ST / E ATLANTIC PL',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '50408',
                      'time': '13:10:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.682086',
                      'lng': '-104.931666',
                      'location': 'S DAHLIA ST / E JEWELL AVE',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '51998',
                      'time': '22:41:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.68208',
                      'lng': '-104.912894',
                      'location': 'S MONACO ST / E JEWELL AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '52025',
                      'time': '21:08:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.682086',
                      'lng': '-104.931666',
                      'location': '1900-BLK S DAHLIA ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '52488',
                      'time': '02:41:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.682092',
                      'lng': '-104.922234',
                      'location': 'S HOLLY ST / E JEWELL AVE',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '53265',
                      'time': '22:54:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.683677',
                      'lng': '-104.912887',
                      'location': 'S MONACO ST / E COLORADO DR',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '54503',
                      'time': '00:10:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.683524',
                      'lng': '-104.937358',
                      'location': 'S BELLAIRE ST / E UTAH PL',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '54806',
                      'time': '17:30:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.682797',
                      'lng': '-104.937355',
                      'location': 'S BELLAIRE ST / E BAILS PL',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '55116',
                      'time': '13:31:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.683744',
                      'lng': '-104.92224',
                      'location': 'S HOLLY ST / E UTAH PL',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '55153',
                      'time': '01:27:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.684997',
                      'lng': '-104.934886',
                      'location': 'E MONTANA PL / S CLERMONT ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '59361',
                      'time': '02:44:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.684858',
                      'lng': '-104.903443',
                      'location': 'S QUEBEC ST / E CHERRY CREEK S DR',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '59490',
                      'time': '05:51:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.684858',
                      'lng': '-104.903443',
                      'location': 'E CHERRY CREEK S DR / S QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '59497',
                      'time': '22:55:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.685442',
                      'lng': '-104.926882',
                      'location': 'E MEXICO AVE / S FOREST ST',
                      'outcome': 'arrest',
                      'precinct': '322',
                      'raw_row_number': '59593',
                      'time': '21:33:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.685687',
                      'lng': '-104.939461',
                      'location': '4100 E MEXICO AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '60885',
                      'time': '15:17:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.687543',
                      'lng': '-104.922319',
                      'location': 'S HOLLY ST / E IOWA AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '64432',
                      'time': '21:48:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.687493',
                      'lng': '-104.940651',
                      'location': 'E IOWA AVE / S COLORADO BLVD',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '64984',
                      'time': '05:27:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.687498',
                      'lng': '-104.939468',
                      'location': 'E IOWA AVE / S ALBION ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '65577',
                      'time': '23:15:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.687498',
                      'lng': '-104.939468',
                      'location': 'E IOWA AVE / S ALBION ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '65578',
                      'time': '00:58:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.687377',
                      'lng': '-104.903539',
                      'location': 'S QUEBEC ST / E IOWA AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '65638',
                      'time': '23:02:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.687377',
                      'lng': '-104.903539',
                      'location': '1600-BLK S QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '65642',
                      'time': '11:11:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.68934',
                      'lng': '-104.932557',
                      'location': 'E FLORIDA AVE / S DEXTER WAY',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '71613',
                      'time': '02:50:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.689342',
                      'lng': '-104.931697',
                      'location': 'E FLORIDA AVE / S DAHLIA ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '72221',
                      'time': '04:01:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.689361',
                      'lng': '-104.912898',
                      'location': 'S MONACO ST / E FLORIDA AVE',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '72306',
                      'time': '01:02:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.689361',
                      'lng': '-104.912898',
                      'location': 'S MONACO ST / E FLORIDA AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '72319',
                      'time': '20:50:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.689361',
                      'lng': '-104.912898',
                      'location': 'S MONACO ST / E FLORIDA AVE',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '72322',
                      'time': '21:43:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.689355',
                      'lng': '-104.903512',
                      'location': 'E FLORIDA AVE / S QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '72339',
                      'time': '22:45:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.689362',
                      'lng': '-104.918357',
                      'location': 'E FLORIDA AVE / S JASMINE ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '72426',
                      'time': '13:31:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.69143',
                      'lng': '-104.912889',
                      'location': 'S MONACO ST / E CHERRY CREEK N DR',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '76255',
                      'time': '14:47:26',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.692947',
                      'lng': '-104.939547',
                      'location': '4100-BLK E LOUISIANA AVE',
                      'outcome': 'arrest',
                      'precinct': '322',
                      'raw_row_number': '82903',
                      'time': '02:21:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.692965',
                      'lng': '-104.935097',
                      'location': 'E LOUISIANA AVE / S CLERMONT ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '83534',
                      'time': '23:06:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.695309',
                      'lng': '-104.91289',
                      'location': '1200 S MONACO ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '86443',
                      'time': '11:31:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.695309',
                      'lng': '-104.91289',
                      'location': '1200 S MONACO ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '86444',
                      'time': '01:11:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.694967',
                      'lng': '-104.908203',
                      'location': '1200 S ONEIDA ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '86830',
                      'time': '10:55:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.695662',
                      'lng': '-104.903508',
                      'location': 'S QUEBEC ST / E MISSISSIPPI AVE',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '87212',
                      'time': '21:08:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.695366',
                      'lng': '-104.931737',
                      'location': 'E KANSAS DR / S DAHLIA ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '87552',
                      'time': '21:08:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.695662',
                      'lng': '-104.903508',
                      'location': 'E MISSISSIPPI AVE / S QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '87864',
                      'time': '23:49:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.695572',
                      'lng': '-104.90258',
                      'location': '1200 S QUEBEC WAY',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '88412',
                      'time': '08:20:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.69512',
                      'lng': '-104.922311',
                      'location': 'E MINNESOTA DR / S HOLLY ST',
                      'outcome': 'arrest',
                      'precinct': '322',
                      'raw_row_number': '88872',
                      'time': '11:32:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.696623',
                      'lng': '-104.91289',
                      'location': 'S MONACO ST / E MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '99078',
                      'time': '22:15:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.696625',
                      'lng': '-104.908211',
                      'location': '1100 S ONEIDA ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '99742',
                      'time': '20:49:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.696644',
                      'lng': '-104.917585',
                      'location': 'S KEARNEY ST / E MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '100298',
                      'time': '08:05:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.696644',
                      'lng': '-104.917585',
                      'location': 'E MISSISSIPPI AVE / S KEARNEY ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '100300',
                      'time': '23:25:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.698435',
                      'lng': '-104.908232',
                      'location': '1000 S ONEIDA ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '102395',
                      'time': '03:15:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.698536',
                      'lng': '-104.903545',
                      'location': 'LEETSDALE DR / S QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '102570',
                      'time': '17:04:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Detox Van',
                      'district': '3',
                      'lat': '39.698536',
                      'lng': '-104.903545',
                      'location': 'S QUEBEC ST / LEETSDALE DR',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '103276',
                      'time': '17:14:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.69971',
                      'lng': '-104.903531',
                      'location': '950 S QUEBEC ST',
                      'outcome': 'arrest',
                      'precinct': '322',
                      'raw_row_number': '103512',
                      'time': '20:09:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.699521',
                      'lng': '-104.906242',
                      'location': '7150 LEETSDALE DR',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '103611',
                      'time': '22:58:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.698536',
                      'lng': '-104.903545',
                      'location': 'S PARKER RD / S QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '103845',
                      'time': '22:07:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.69931',
                      'lng': '-104.912737',
                      'location': '950 S MONACO ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '104096',
                      'time': '21:30:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.699521',
                      'lng': '-104.906242',
                      'location': '7150 LEETSDALE DR',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '104380',
                      'time': '01:19:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.699521',
                      'lng': '-104.906242',
                      'location': '7150 LEETSDALE DR',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '104526',
                      'time': '15:18:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '3',
                      'lat': '39.699521',
                      'lng': '-104.906242',
                      'location': '7150 LEETSDALE DR',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '104708',
                      'time': '01:47:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': '1 - Alarm RP On Scene,K - Stre',
                      'district': '3',
                      'lat': '39.698778',
                      'lng': '-104.908233',
                      'location': '970 S ONEIDA ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '105292',
                      'time': '21:54:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.698536',
                      'lng': '-104.903545',
                      'location': 'LEETSDALE DR / S QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '105336',
                      'time': '02:30:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.698536',
                      'lng': '-104.903545',
                      'location': 'LEETSDALE DR / S QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '105498',
                      'time': '05:46:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.698536',
                      'lng': '-104.903545',
                      'location': 'LEETSDALE DR / S QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '105499',
                      'time': '22:32:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.701081',
                      'lng': '-104.910562',
                      'location': 'LEETSDALE DR / S NIAGARA ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '111224',
                      'time': '21:48:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.700604',
                      'lng': '-104.909403',
                      'location': '6801 LEETSDALE DR',
                      'outcome': 'arrest',
                      'precinct': '322',
                      'raw_row_number': '111493',
                      'time': '18:43:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.700217',
                      'lng': '-104.908218',
                      'location': 'LEETSDALE DR / S ONEIDA ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '112544',
                      'time': '02:33:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.700217',
                      'lng': '-104.908218',
                      'location': 'LEETSDALE DR / S ONEIDA ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '112567',
                      'time': '21:02:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.702053',
                      'lng': '-104.912836',
                      'location': 'E OHIO AVE / S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '115750',
                      'time': '21:45:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.7029',
                      'lng': '-104.912835',
                      'location': 'LEETSDALE DR / S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '115921',
                      'time': '13:00:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.7029',
                      'lng': '-104.912835',
                      'location': 'LEETSDALE DR / S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '115947',
                      'time': '21:21:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.7029',
                      'lng': '-104.912835',
                      'location': '750 S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '117146',
                      'time': '14:49:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.7029',
                      'lng': '-104.912835',
                      'location': 'LEETSDALE DR / S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '117316',
                      'time': '03:14:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.7029',
                      'lng': '-104.912835',
                      'location': 'LEETSDALE DR / S MONACO ST',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '117800',
                      'time': '10:04:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.703883',
                      'lng': '-104.903502',
                      'location': 'S QUEBEC ST / E EXPOSITION AVE',
                      'outcome': 'arrest',
                      'precinct': '322',
                      'raw_row_number': '121439',
                      'time': '00:26:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.703865',
                      'lng': '-104.917584',
                      'location': 'E EXPOSITION AVE / S KEARNEY ST',
                      'outcome': 'arrest',
                      'precinct': '322',
                      'raw_row_number': '121504',
                      'time': '01:41:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.704744',
                      'lng': '-104.916415',
                      'location': '6200 LEETSDALE DR',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '123112',
                      'time': '04:09:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.705285',
                      'lng': '-104.910286',
                      'location': 'S NIAGARA ST / E CENTER AVE',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '124230',
                      'time': '10:37:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.707508',
                      'lng': '-104.903511',
                      'location': 'E VIRGINIA AVE / S QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '130857',
                      'time': '21:28:27',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.708113',
                      'lng': '-104.926983',
                      'location': 'LEETSDALE DR / S FOREST ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '131067',
                      'time': '23:59:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.707524',
                      'lng': '-104.923466',
                      'location': 'LEETSDALE DR / S HUDSON ST',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '131217',
                      'time': '02:26:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.707499',
                      'lng': '-104.912866',
                      'location': 'S MONACO ST / E VIRGINIA AVE',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '131466',
                      'time': '16:05:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.707303',
                      'lng': '-104.922259',
                      'location': 'LEETSDALE DR / S HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '133744',
                      'time': '16:32:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.708322',
                      'lng': '-104.912783',
                      'location': 'S MONACO ST / E ALASKA DR',
                      'outcome': 'warning',
                      'precinct': '322',
                      'raw_row_number': '138661',
                      'time': '22:31:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.687102',
                      'lng': '-104.900825',
                      'location': 'S ROSLYN ST / E IOWA AVE',
                      'outcome': 'citation',
                      'precinct': '322',
                      'raw_row_number': '513355',
                      'time': '16:30:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.688199',
                      'lng': '-104.895682',
                      'location': 'S QUEBEC WAY / PRIVATE RD',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '513651',
                      'time': '20:48:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.690586',
                      'lng': '-104.897865',
                      'location': '1470 S QUEBEC WAY',
                      'outcome': 'NA',
                      'precinct': '322',
                      'raw_row_number': '513697',
                      'time': '03:49:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'}],
             '323': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.653088',
                      'lng': '-104.915347',
                      'location': 'E HAMPDEN AVE / S LOCUST ST',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '7658',
                      'time': '03:53:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.653088',
                      'lng': '-104.915347',
                      'location': 'E HAMPDEN AVE / S LOCUST ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '7663',
                      'time': '22:33:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.653081',
                      'lng': '-104.918256',
                      'location': 'I25 NB / E HAMPDEN AVE',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '8139',
                      'time': '15:18:49',
                      'type': 'pedestrian',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.653115',
                      'lng': '-104.904726',
                      'location': 'E HAMPDEN AVE / S POPLAR ST',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '8496',
                      'time': '22:42:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653081',
                      'lng': '-104.918256',
                      'location': 'I25 NB / E HAMPDEN AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '8603',
                      'time': '11:41:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.653081',
                      'lng': '-104.918256',
                      'location': 'E HAMPDEN AVE / I25 NB',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '8757',
                      'time': '08:35:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.653091',
                      'lng': '-104.91293',
                      'location': 'E HAMPDEN AVE / S MONACO ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '8842',
                      'time': '22:29:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.653088',
                      'lng': '-104.915347',
                      'location': 'E HAMPDEN AVE / S LOCUST ST',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '8887',
                      'time': '03:25:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653081',
                      'lng': '-104.918256',
                      'location': 'E HAMPDEN AVE / I25 NB',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '9351',
                      'time': '06:44:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653088',
                      'lng': '-104.915347',
                      'location': 'E HAMPDEN AVE / S LOCUST ST',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '9542',
                      'time': '07:14:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.653091',
                      'lng': '-104.91293',
                      'location': 'E HAMPDEN AVE / S MONACO ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '9626',
                      'time': '20:54:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.653091',
                      'lng': '-104.91293',
                      'location': '3500-BLK S MONACO ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '10204',
                      'time': '23:02:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.653118',
                      'lng': '-104.903237',
                      'location': '7400 E HAMPDEN AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '10406',
                      'time': '01:43:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.654073',
                      'lng': '-104.912925',
                      'location': '3400-BLK S MONACO ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '11015',
                      'time': '19:51:24',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.653116',
                      'lng': '-104.902484',
                      'location': '7500 E HAMPDEN AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '11045',
                      'time': '23:16:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.654073',
                      'lng': '-104.912925',
                      'location': 'S MONACO ST / E GIRARD AVE',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '11440',
                      'time': '19:58:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653116',
                      'lng': '-104.902484',
                      'location': '7500 E HAMPDEN AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '11644',
                      'time': '23:15:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.66035',
                      'lng': '-104.912976',
                      'location': 'E MONACO CIR / S MONACO ST',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '13344',
                      'time': '20:12:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.660159',
                      'lng': '-104.902321',
                      'location': 'E CORNELL AVE / S TAMARAC DR',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '14537',
                      'time': '20:08:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.657969',
                      'lng': '-104.912911',
                      'location': 'S MONACO ST / E FLOYD AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '14745',
                      'time': '16:26:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.657969',
                      'lng': '-104.912911',
                      'location': 'S MONACO ST / E FLOYD AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '14747',
                      'time': '20:24:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.66274',
                      'lng': '-104.912895',
                      'location': 'S MONACO ST / E CORNELL AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '15494',
                      'time': '23:02:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.664373',
                      'lng': '-104.915412',
                      'location': 'S LOCUST ST / E BATES AVE',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '16293',
                      'time': '17:03:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.665908',
                      'lng': '-104.902923',
                      'location': 'S QUEBEC ST / E AMHERST AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '17365',
                      'time': '15:17:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.665908',
                      'lng': '-104.902923',
                      'location': '2800-BLK S QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '18142',
                      'time': '14:58:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.665908',
                      'lng': '-104.902923',
                      'location': 'E AMHERST AVE / S QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '19385',
                      'time': '11:58:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.66611',
                      'lng': '-104.902244',
                      'location': 'E AMHERST AVE / S QUINCE ST',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '20161',
                      'time': '15:02:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.667492',
                      'lng': '-104.925475',
                      'location': 'E YALE AVE / I25 NB',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '22222',
                      'time': '16:31:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.667644',
                      'lng': '-104.905892',
                      'location': '6900 E YALE AVE',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '22508',
                      'time': '22:28:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.667641',
                      'lng': '-104.907403',
                      'location': '6800 E YALE AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '22753',
                      'time': '23:37:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.667492',
                      'lng': '-104.925475',
                      'location': 'I25 NB / E YALE AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '22902',
                      'time': '09:45:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.667632',
                      'lng': '-104.912874',
                      'location': 'E YALE AVE / S MONACO ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '22988',
                      'time': '22:15:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.667492',
                      'lng': '-104.925475',
                      'location': 'I25 NB / E YALE AVE',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '23046',
                      'time': '09:15:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.667632',
                      'lng': '-104.912874',
                      'location': 'S MONACO ST / E YALE AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '23622',
                      'time': '01:53:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.667632',
                      'lng': '-104.912874',
                      'location': 'S MONACO ST / E YALE AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '23628',
                      'time': '16:11:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.667632',
                      'lng': '-104.912874',
                      'location': 'S MONACO ST / E YALE AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '24260',
                      'time': '15:52:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.667641',
                      'lng': '-104.907403',
                      'location': '6800 E YALE AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '24826',
                      'time': '22:41:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.676647',
                      'lng': '-104.92343',
                      'location': 'E WARREN AVE / S HUDSON ST',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '32314',
                      'time': '01:47:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.676645',
                      'lng': '-104.912766',
                      'location': '2200 S MONACO ST',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '32797',
                      'time': '22:32:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Back Up / Cover Car',
                      'district': '3',
                      'lat': '39.676645',
                      'lng': '-104.912766',
                      'location': '2200 S MONACO ST',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '33230',
                      'time': '21:43:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.676652',
                      'lng': '-104.903592',
                      'location': 'S QUEBEC ST / E Iliff Ave',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '34811',
                      'time': '00:20:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.67822',
                      'lng': '-104.922267',
                      'location': '2110 S HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '37387',
                      'time': '02:45:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.678246',
                      'lng': '-104.905538',
                      'location': '7100 E EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '43729',
                      'time': '15:08:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.678246',
                      'lng': '-104.905538',
                      'location': '7100 E EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '44202',
                      'time': '22:47:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.653114',
                      'lng': '-104.898759',
                      'location': 'E HAMPDEN AVE / S TAMARAC DR',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '511070',
                      'time': '13:10:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.670934',
                      'lng': '-104.866133',
                      'location': 'S HAVANA ST / S PARKER RD',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '511286',
                      'time': '22:46:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653069',
                      'lng': '-104.884785',
                      'location': 'S YOSEMITE ST / E HAMPDEN AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '511426',
                      'time': '09:54:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.653114',
                      'lng': '-104.898759',
                      'location': 'E HAMPDEN AVE / S TAMARAC DR',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '511511',
                      'time': '13:10:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.653114',
                      'lng': '-104.898759',
                      'location': 'E HAMPDEN AVE / S TAMARAC DR',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '511514',
                      'time': '22:13:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653069',
                      'lng': '-104.884785',
                      'location': 'S YOSEMITE ST / E HAMPDEN AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '511729',
                      'time': '11:01:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.65305',
                      'lng': '-104.875658',
                      'location': 'E HAMPDEN AVE / S DAYTON ST',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '511784',
                      'time': '23:13:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.65305',
                      'lng': '-104.875658',
                      'location': 'S DAYTON ST / E HAMPDEN AVE',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '511818',
                      'time': '19:39:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653069',
                      'lng': '-104.884785',
                      'location': 'S YOSEMITE ST / E HAMPDEN AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '511841',
                      'time': '16:12:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.65305',
                      'lng': '-104.875658',
                      'location': 'S DAYTON ST / E HAMPDEN AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '512038',
                      'time': '19:09:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.65305',
                      'lng': '-104.875658',
                      'location': 'E HAMPDEN AVE / S DAYTON ST',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '512128',
                      'time': '21:33:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.655091',
                      'lng': '-104.870286',
                      'location': 'E GIRARD AVE / S GALENA ST',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '512419',
                      'time': '17:23:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.655091',
                      'lng': '-104.870286',
                      'location': 'E GIRARD AVE / S GALENA ST',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '512460',
                      'time': '22:55:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.654287',
                      'lng': '-104.898747',
                      'location': '3400 S TAMARAC DR',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '512542',
                      'time': '22:28:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653094',
                      'lng': '-104.894083',
                      'location': 'S ULSTER ST / E HAMPDEN AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '512553',
                      'time': '22:00:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.655091',
                      'lng': '-104.870286',
                      'location': '10200 E GIRARD AVE',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '512670',
                      'time': '23:16:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.655091',
                      'lng': '-104.870286',
                      'location': '10200 E GIRARD AVE',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '512678',
                      'time': '23:52:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.660218',
                      'lng': '-104.86247',
                      'location': '10890 E DARTMOUTH AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '512705',
                      'time': '19:48:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.655309',
                      'lng': '-104.887841',
                      'location': 'S WILLOW ST / E GIRARD AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '512791',
                      'time': '08:49:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.654318',
                      'lng': '-104.876739',
                      'location': '9600 E GIRARD AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '512898',
                      'time': '02:32:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.654318',
                      'lng': '-104.876739',
                      'location': 'S DALLAS CT / E GIRARD AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '512905',
                      'time': '12:10:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.654318',
                      'lng': '-104.876739',
                      'location': '9600 E GIRARD AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '512907',
                      'time': '21:12:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653094',
                      'lng': '-104.894083',
                      'location': 'E HAMPDEN AVE / S ULSTER ST',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '515843',
                      'time': '02:13:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653061',
                      'lng': '-104.88142',
                      'location': 'E HAMPDEN AVE / S AKRON ST',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '516311',
                      'time': '23:08:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653039',
                      'lng': '-104.872001',
                      'location': 'E HAMPDEN AVE / S FLORENCE ST',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '516463',
                      'time': '15:43:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.653069',
                      'lng': '-104.884785',
                      'location': 'E HAMPDEN AVE / S YOSEMITE ST',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '516481',
                      'time': '19:28:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.653073',
                      'lng': '-104.887461',
                      'location': '8600 E HAMPDEN AVE',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '516710',
                      'time': '00:19:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.653073',
                      'lng': '-104.887461',
                      'location': 'S WILLOW ST / E HAMPDEN AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '516713',
                      'time': '02:49:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.65432',
                      'lng': '-104.875645',
                      'location': 'S DAYTON ST / E GIRARD AVE',
                      'outcome': 'NA',
                      'precinct': '323',
                      'raw_row_number': '516792',
                      'time': '00:34:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.653511',
                      'lng': '-104.868408',
                      'location': 'E HAMPDEN AVE / S GALENA ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '516982',
                      'time': '23:15:09',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.656996',
                      'lng': '-104.866421',
                      'location': 'S HAVANA ST / E GIRARD AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '517102',
                      'time': '01:21:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.656996',
                      'lng': '-104.866421',
                      'location': 'S HAVANA ST / E GIRARD AVE',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '517143',
                      'time': '22:29:40',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.654323',
                      'lng': '-104.874242',
                      'location': '9825 E GIRARD AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '517172',
                      'time': '23:16:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.66031',
                      'lng': '-104.866334',
                      'location': 'E DARTMOUTH AVE / S HAVANA ST',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '517844',
                      'time': '03:16:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.654423',
                      'lng': '-104.872289',
                      'location': 'E GIRARD AVE / S FLORENCE ST',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '517978',
                      'time': '18:10:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.674752',
                      'lng': '-104.875301',
                      'location': '9700 E ILIFF AVE',
                      'outcome': 'arrest',
                      'precinct': '323',
                      'raw_row_number': '518179',
                      'time': '12:29:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.654495',
                      'lng': '-104.884773',
                      'location': '3400 S YOSEMITE ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '521140',
                      'time': '19:31:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653071',
                      'lng': '-104.886427',
                      'location': '8800 E HAMPDEN AVE',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '527367',
                      'time': '20:37:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.653069',
                      'lng': '-104.884785',
                      'location': 'E HAMPDEN AVE / S YOSEMITE ST',
                      'outcome': 'warning',
                      'precinct': '323',
                      'raw_row_number': '527822',
                      'time': '20:21:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.653511',
                      'lng': '-104.868408',
                      'location': 'E HAMPDEN AVE / S GALENA ST',
                      'outcome': 'citation',
                      'precinct': '323',
                      'raw_row_number': '528323',
                      'time': '22:31:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '324': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.626174',
                      'lng': '-104.904062',
                      'location': '4885 S QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '324',
                      'raw_row_number': '121',
                      'time': '17:48:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.626174',
                      'lng': '-104.904062',
                      'location': '4885 S QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '324',
                      'raw_row_number': '778',
                      'time': '19:35:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'File Only',
                      'district': '3',
                      'lat': '39.626728',
                      'lng': '-104.904071',
                      'location': '4800-BLK S QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '324',
                      'raw_row_number': '946',
                      'time': '13:50:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.631291',
                      'lng': '-104.906021',
                      'location': 'I25 SB / I225 SB',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '987',
                      'time': '23:59:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.631291',
                      'lng': '-104.906021',
                      'location': 'I25 SB / I225 SB',
                      'outcome': 'warning',
                      'precinct': '324',
                      'raw_row_number': '988',
                      'time': '07:29:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.634099',
                      'lng': '-104.905769',
                      'location': 'I25 NB / I225 NB',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '3554',
                      'time': '23:06:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.638663',
                      'lng': '-104.904008',
                      'location': 'E QUINCY AVE / E EASTMOOR DR',
                      'outcome': 'warning',
                      'precinct': '324',
                      'raw_row_number': '3875',
                      'time': '22:47:11',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.63553',
                      'lng': '-104.908458',
                      'location': 'I25 SB / I225 NB',
                      'outcome': 'arrest',
                      'precinct': '324',
                      'raw_row_number': '4439',
                      'time': '22:41:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '3',
                      'lat': '39.645998',
                      'lng': '-104.922649',
                      'location': '3950 S HOLLY ST',
                      'outcome': 'NA',
                      'precinct': '324',
                      'raw_row_number': '4854',
                      'time': '14:06:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.647509',
                      'lng': '-104.88496',
                      'location': 'S YOSEMITE ST / E LEHIGH AVE',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '511124',
                      'time': '12:17:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.649562',
                      'lng': '-104.882073',
                      'location': 'E KENYON AVE / PRIVATE RD',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '514488',
                      'time': '15:55:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.649562',
                      'lng': '-104.882073',
                      'location': 'PRIVATE RD / E KENYON AVE',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '514489',
                      'time': '16:29:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Vehicle Towed',
                      'district': '3',
                      'lat': '39.649589',
                      'lng': '-104.884871',
                      'location': 'S YOSEMITE ST / E KENYON AVE',
                      'outcome': 'NA',
                      'precinct': '324',
                      'raw_row_number': '514492',
                      'time': '09:22:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.62418',
                      'lng': '-104.894621',
                      'location': 'E BELLEVIEW AVE / S ULSTER ST',
                      'outcome': 'NA',
                      'precinct': '324',
                      'raw_row_number': '515696',
                      'time': '00:11:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Report Made',
                      'district': '3',
                      'lat': '39.624207',
                      'lng': '-104.889786',
                      'location': 'E BELLEVIEW AVE / DTC Blvd',
                      'outcome': 'NA',
                      'precinct': '324',
                      'raw_row_number': '515706',
                      'time': '10:43:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '515724',
                      'time': '15:00:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '515727',
                      'time': '09:38:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '515731',
                      'time': '14:31:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '515738',
                      'time': '09:29:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '515739',
                      'time': '10:25:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '515746',
                      'time': '10:28:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651175',
                      'lng': '-104.884818',
                      'location': 'E JEFFERSON AVE / S YOSEMITE ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '515857',
                      'time': '11:23:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651175',
                      'lng': '-104.884818',
                      'location': 'E JEFFERSON AVE / S YOSEMITE ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '515886',
                      'time': '09:38:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '3',
                      'lat': '39.651175',
                      'lng': '-104.884818',
                      'location': 'E JEFFERSON AVE / S YOSEMITE ST',
                      'outcome': 'NA',
                      'precinct': '324',
                      'raw_row_number': '515924',
                      'time': '11:38:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651175',
                      'lng': '-104.884818',
                      'location': 'E JEFFERSON AVE / S YOSEMITE ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '516025',
                      'time': '12:17:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.635685',
                      'lng': '-104.893792',
                      'location': 'S TAMARAC ST / I225 SB',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '516086',
                      'time': '07:38:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '3',
                      'lat': '39.645908',
                      'lng': '-104.885016',
                      'location': 'E MANSFIELD AVE / S YOSEMITE ST',
                      'outcome': 'arrest',
                      'precinct': '324',
                      'raw_row_number': '516114',
                      'time': '10:31:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651398',
                      'lng': '-104.891783',
                      'location': 'E JEFFERSON AVE / S VERBENA ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '516330',
                      'time': '08:48:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651398',
                      'lng': '-104.891783',
                      'location': 'E JEFFERSON AVE / S VERBENA ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '516331',
                      'time': '08:14:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651398',
                      'lng': '-104.891783',
                      'location': 'E JEFFERSON AVE / S VERBENA ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '516376',
                      'time': '08:57:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651398',
                      'lng': '-104.891783',
                      'location': 'E JEFFERSON AVE / S VERBENA ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '516377',
                      'time': '10:12:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651398',
                      'lng': '-104.891783',
                      'location': 'E JEFFERSON AVE / S VERBENA ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '516378',
                      'time': '11:43:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651398',
                      'lng': '-104.891783',
                      'location': 'E JEFFERSON AVE / S VERBENA ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '516382',
                      'time': '14:42:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.651398',
                      'lng': '-104.891783',
                      'location': 'E JEFFERSON AVE / S VERBENA ST',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '516384',
                      'time': '10:44:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '3',
                      'lat': '39.633406',
                      'lng': '-104.893186',
                      'location': 'S DTC BLVD / E TUFTS AVE',
                      'outcome': 'warning',
                      'precinct': '324',
                      'raw_row_number': '520108',
                      'time': '00:34:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '520297',
                      'time': '09:16:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '520306',
                      'time': '08:37:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '520307',
                      'time': '08:53:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '3',
                      'lat': '39.640307',
                      'lng': '-104.885098',
                      'location': 'S YOSEMITE ST / E OXFORD DR',
                      'outcome': 'citation',
                      'precinct': '324',
                      'raw_row_number': '520308',
                      'time': '09:05:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '3',
                      'lat': '39.633406',
                      'lng': '-104.893186',
                      'location': '4601 S DTC BLVD',
                      'outcome': 'NA',
                      'precinct': '324',
                      'raw_row_number': '520393',
                      'time': '11:49:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'}],
             '411': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711159',
                      'lng': '-105.022707',
                      'location': 'W ALAMEDA AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '133176',
                      'time': '17:30:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': '300 S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '133488',
                      'time': '23:06:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': 'S FEDERAL BLVD / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '133490',
                      'time': '23:26:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': 'W ALAMEDA AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '133518',
                      'time': '01:07:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711142',
                      'lng': '-105.027535',
                      'location': 'W ALAMEDA AVE / S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '135022',
                      'time': '03:23:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711142',
                      'lng': '-105.027535',
                      'location': 'S HAZEL CT / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '135114',
                      'time': '23:11:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.02994',
                      'location': 'W ALAMEDA AVE / S IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '135196',
                      'time': '23:13:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711162',
                      'lng': '-105.026321',
                      'location': 'W ALAMEDA AVE / S GROVE ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '135217',
                      'time': '07:16:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': 'S ELIOT ST / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '135519',
                      'time': '23:52:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': 'W ALAMEDA AVE / S ELIOT ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '135520',
                      'time': '08:18:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': 'W ALAMEDA AVE / S ELIOT ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '135704',
                      'time': '23:49:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': 'W ALAMEDA AVE / S ELIOT ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '135730',
                      'time': '19:20:31',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': 'W ALAMEDA AVE / S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '135857',
                      'time': '16:43:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': 'W ALAMEDA AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '135858',
                      'time': '11:59:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711142',
                      'lng': '-105.027535',
                      'location': 'S HAZEL CT / W ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '136236',
                      'time': '22:15:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711162',
                      'lng': '-105.026321',
                      'location': '300 S GROVE ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '137220',
                      'time': '02:57:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.02994',
                      'location': 'W ALAMEDA AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '137867',
                      'time': '23:48:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711162',
                      'lng': '-105.026321',
                      'location': 'W ALAMEDA AVE / S GROVE ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '138056',
                      'time': '22:04:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711162',
                      'lng': '-105.026321',
                      'location': 'W ALAMEDA AVE / S GROVE ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '138073',
                      'time': '20:53:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': 'S ELIOT ST / W ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '138186',
                      'time': '08:15:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': 'W ALAMEDA AVE / S ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '138233',
                      'time': '18:44:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': '300-BLK S ELIOT ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '138234',
                      'time': '17:15:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': 'W ALAMEDA AVE / S ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '138280',
                      'time': '07:51:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': 'W ALAMEDA AVE / S ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '138313',
                      'time': '22:28:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': 'W ALAMEDA AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '140202',
                      'time': '20:49:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.02994',
                      'location': 'W ALAMEDA AVE / S IRVING ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '140540',
                      'time': '23:20:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711162',
                      'lng': '-105.026321',
                      'location': 'W ALAMEDA AVE / S GROVE ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '140649',
                      'time': '22:10:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.02994',
                      'location': 'W ALAMEDA AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '140704',
                      'time': '11:37:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.02994',
                      'location': 'W ALAMEDA AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '140705',
                      'time': '19:27:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711155',
                      'lng': '-105.023866',
                      'location': 'W ALAMEDA AVE / S ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '140910',
                      'time': '01:15:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711187',
                      'lng': '-105.031225',
                      'location': 'W ALAMEDA AVE / S JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '141028',
                      'time': '22:28:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711187',
                      'lng': '-105.031225',
                      'location': 'S JULIAN ST / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '141043',
                      'time': '23:45:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711187',
                      'lng': '-105.031225',
                      'location': 'W ALAMEDA AVE / S JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '141066',
                      'time': '21:40:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': 'W ALAMEDA AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '141337',
                      'time': '20:39:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711142',
                      'lng': '-105.027535',
                      'location': 'S HAZEL CT / W ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '142913',
                      'time': '21:01:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711143',
                      'lng': '-105.027743',
                      'location': '3158 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '143102',
                      'time': '11:31:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.02994',
                      'location': 'W ALAMEDA AVE / S IRVING ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '143200',
                      'time': '22:56:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711196',
                      'lng': '-105.003885',
                      'location': 'W ALAMEDA AVE / S NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '143597',
                      'time': '18:54:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711196',
                      'lng': '-105.003885',
                      'location': '1300 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '143607',
                      'time': '22:03:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711196',
                      'lng': '-105.003885',
                      'location': '1300 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '143624',
                      'time': '23:50:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Y - Broadcast',
                      'district': '4',
                      'lat': '39.71121',
                      'lng': '-105.032456',
                      'location': 'S KNOX CT / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '144063',
                      'time': '23:14:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711229',
                      'lng': '-105.034883',
                      'location': 'S LOWELL BLVD / W ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '144122',
                      'time': '13:46:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711226',
                      'lng': '-105.036083',
                      'location': 'W ALAMEDA AVE / S MEADE ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '144262',
                      'time': '23:14:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711251',
                      'lng': '-105.039698',
                      'location': 'S PERRY ST / W ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '144686',
                      'time': '07:51:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.71121',
                      'lng': '-105.032456',
                      'location': 'W ALAMEDA AVE / S KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '144930',
                      'time': '02:12:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711181',
                      'lng': '-105.014523',
                      'location': 'W ALAMEDA AVE / S YUMA ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '145101',
                      'time': '20:15:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.71119',
                      'lng': '-105.01101',
                      'location': 'W ALAMEDA AVE / S TEJON ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '145717',
                      'time': '22:26:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.71119',
                      'lng': '-105.01101',
                      'location': 'W ALAMEDA AVE / S TEJON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '145777',
                      'time': '22:20:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711184',
                      'lng': '-105.006273',
                      'location': 'W ALAMEDA AVE / S PECOS ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '145856',
                      'time': '15:03:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711202',
                      'lng': '-105.008654',
                      'location': 'W ALAMEDA AVE / S RARITAN ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '145959',
                      'time': '23:16:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.001565',
                      'location': 'W ALAMEDA AVE / S LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '146068',
                      'time': '03:10:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711229',
                      'lng': '-105.034883',
                      'location': '300 S LOWELL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '146643',
                      'time': '01:33:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': '300 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '146663',
                      'time': '11:43:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.71121',
                      'lng': '-105.032456',
                      'location': 'W ALAMEDA AVE / MORRISON RD',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '146828',
                      'time': '01:01:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.71121',
                      'lng': '-105.032456',
                      'location': 'S KNOX CT / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '146857',
                      'time': '22:36:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.020362',
                      'location': '2701 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '146977',
                      'time': '03:46:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.020335',
                      'location': 'W ALAMEDA AVE / S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '147069',
                      'time': '04:35:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711229',
                      'lng': '-105.034883',
                      'location': '300 S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '147149',
                      'time': '22:18:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711268',
                      'lng': '-105.043259',
                      'location': 'S STUART ST / W ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '147248',
                      'time': '22:58:26',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711191',
                      'lng': '-105.015701',
                      'location': 'S ZUNI ST / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '147259',
                      'time': '17:14:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711268',
                      'lng': '-105.043259',
                      'location': 'S STUART ST / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '147316',
                      'time': '01:45:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711268',
                      'lng': '-105.043259',
                      'location': '300-BLK S STUART ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '147375',
                      'time': '00:20:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711173',
                      'lng': '-105.01916',
                      'location': '300 S CANOSA CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '147393',
                      'time': '11:16:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': '300-BLK S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '147412',
                      'time': '16:45:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711183',
                      'lng': '-105.016629',
                      'location': '2475 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '147678',
                      'time': '15:06:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711201',
                      'lng': '-105.00065',
                      'location': 'S PLATTE RIVER DR / W ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '147754',
                      'time': '23:12:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711191',
                      'lng': '-105.015701',
                      'location': 'W ALAMEDA AVE / S ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '147992',
                      'time': '14:54:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.711191',
                      'lng': '-105.015701',
                      'location': 'W ALAMEDA AVE / S ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148036',
                      'time': '18:00:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711181',
                      'lng': '-105.014523',
                      'location': 'S YUMA ST / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148077',
                      'time': '21:47:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711181',
                      'lng': '-105.014523',
                      'location': 'W ALAMEDA AVE / S YUMA ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148078',
                      'time': '00:57:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.71119',
                      'lng': '-105.01101',
                      'location': 'S TEJON ST / W ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '148390',
                      'time': '01:04:06',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'No Police Needed',
                      'district': '4',
                      'lat': '39.71119',
                      'lng': '-105.01101',
                      'location': '300 S TEJON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148488',
                      'time': '07:28:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.001565',
                      'location': 'W ALAMEDA AVE / S LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148685',
                      'time': '22:40:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711192',
                      'lng': '-105.004689',
                      'location': '1333 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148724',
                      'time': '10:21:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.711187',
                      'lng': '-105.002838',
                      'location': '1253 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148745',
                      'time': '18:02:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711196',
                      'lng': '-105.003885',
                      'location': 'W ALAMEDA AVE / S NAVAJO ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '148785',
                      'time': '00:07:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711201',
                      'lng': '-105.00065',
                      'location': 'W ALAMEDA AVE / S PLATTE RIVER DR',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148864',
                      'time': '16:51:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.711201',
                      'lng': '-105.00065',
                      'location': 'S PLATTE RIVER DR / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148971',
                      'time': '09:54:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711201',
                      'lng': '-105.00065',
                      'location': 'W ALAMEDA AVE / S PLATTE RIVER DR',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '148974',
                      'time': '21:46:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': 'W ALAMEDA AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '149388',
                      'time': '23:52:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.71121',
                      'lng': '-105.032456',
                      'location': 'W ALAMEDA AVE / S KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '149564',
                      'time': '22:40:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.020335',
                      'location': 'W ALAMEDA AVE / S CLAY ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '149700',
                      'time': '00:42:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Vehicle Towed',
                      'district': '4',
                      'lat': '39.711182',
                      'lng': '-105.014118',
                      'location': '2299 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '149782',
                      'time': '01:15:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711239',
                      'lng': '-105.037281',
                      'location': 'W ALAMEDA AVE / S NEWTON ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '149888',
                      'time': '00:57:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711173',
                      'lng': '-105.01916',
                      'location': 'W ALAMEDA AVE / S CANOSA CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '149913',
                      'time': '14:54:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711173',
                      'lng': '-105.01916',
                      'location': 'S CANOSA CT / W ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '149975',
                      'time': '18:21:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711176',
                      'lng': '-105.018077',
                      'location': 'W ALAMEDA AVE / S BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '150141',
                      'time': '00:29:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.711176',
                      'lng': '-105.018077',
                      'location': '2600 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '150163',
                      'time': '02:40:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711176',
                      'lng': '-105.018077',
                      'location': '2600 W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '150188',
                      'time': '17:53:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.711187',
                      'lng': '-105.012049',
                      'location': '2100-BLK W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '150928',
                      'time': '03:22:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711196',
                      'lng': '-105.003885',
                      'location': 'S NAVAJO ST / W ALAMEDA AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '151387',
                      'time': '01:16:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711196',
                      'lng': '-105.003885',
                      'location': 'W ALAMEDA AVE / S NAVAJO ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '151389',
                      'time': '02:32:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Detox Van',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.025093',
                      'location': 'W ALAMEDA AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '151710',
                      'time': '23:55:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.71121',
                      'lng': '-105.032456',
                      'location': 'W ALAMEDA AVE / S KNOX CT',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '152127',
                      'time': '01:15:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.71121',
                      'lng': '-105.032456',
                      'location': 'W ALAMEDA AVE / S KNOX CT',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '152130',
                      'time': '00:50:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.71121',
                      'lng': '-105.032456',
                      'location': 'W ALAMEDA AVE / S KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '152157',
                      'time': '21:23:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.711168',
                      'lng': '-105.020335',
                      'location': '2698 W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '152188',
                      'time': '11:07:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711239',
                      'lng': '-105.037281',
                      'location': 'W ALAMEDA AVE / S NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '152478',
                      'time': '23:51:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711239',
                      'lng': '-105.037281',
                      'location': 'W ALAMEDA AVE / S NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '152479',
                      'time': '23:38:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711226',
                      'lng': '-105.033677',
                      'location': 'S KING ST / W ALAMEDA AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '152631',
                      'time': '23:22:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.711266',
                      'lng': '-105.042075',
                      'location': 'W ALAMEDA AVE / S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '152637',
                      'time': '00:04:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711266',
                      'lng': '-105.042075',
                      'location': 'W ALAMEDA AVE / S RALEIGH ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '152646',
                      'time': '23:37:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711266',
                      'lng': '-105.042075',
                      'location': 'W ALAMEDA AVE / S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '152723',
                      'time': '05:21:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711266',
                      'lng': '-105.042075',
                      'location': 'W ALAMEDA AVE / S RALEIGH ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '152724',
                      'time': '07:44:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.001565',
                      'location': 'W ALAMEDA AVE / S LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '152769',
                      'time': '04:14:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711251',
                      'lng': '-105.039698',
                      'location': 'S PERRY ST / W ALAMEDA AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '153082',
                      'time': '22:41:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711174',
                      'lng': '-105.018745',
                      'location': '2630 W ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '153112',
                      'time': '21:45:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.711184',
                      'lng': '-105.006273',
                      'location': 'W ALAMEDA AVE / S PECOS ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '153583',
                      'time': '23:39:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711175',
                      'lng': '-105.001565',
                      'location': '1200-BLK W ALAMEDA AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '153873',
                      'time': '00:17:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.711196',
                      'lng': '-105.003885',
                      'location': 'W ALAMEDA AVE / S NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '153897',
                      'time': '15:54:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.713012',
                      'lng': '-105.020335',
                      'location': 'W CEDAR AVE / S CLAY ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '154599',
                      'time': '22:40:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.712086',
                      'lng': '-105.025088',
                      'location': '249 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '156532',
                      'time': '07:16:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.712151',
                      'lng': '-105.014519',
                      'location': 'S YUMA ST / W BYERS DR',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '156565',
                      'time': '22:18:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.712149',
                      'lng': '-105.012544',
                      'location': '2222 W BYERS DR',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '156594',
                      'time': '10:30:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.712997',
                      'lng': '-105.025082',
                      'location': 'S FEDERAL BLVD / W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '156866',
                      'time': '00:19:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.712997',
                      'lng': '-105.025082',
                      'location': 'S FEDERAL BLVD / W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '156945',
                      'time': '04:36:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.712997',
                      'lng': '-105.025082',
                      'location': 'W CEDAR AVE / S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '156947',
                      'time': '23:31:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.712997',
                      'lng': '-105.025082',
                      'location': 'W CEDAR AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '157077',
                      'time': '23:01:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.712997',
                      'lng': '-105.025082',
                      'location': 'W CEDAR AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '157498',
                      'time': '00:07:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.712997',
                      'lng': '-105.025082',
                      'location': 'S FEDERAL BLVD / W CEDAR AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '157501',
                      'time': '02:33:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.714971',
                      'lng': '-105.033687',
                      'location': 'W BAYAUD AVE / S KING ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '158366',
                      'time': '21:25:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.713046',
                      'lng': '-105.001512',
                      'location': '1200-BLK W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '158590',
                      'time': '10:15:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.713046',
                      'lng': '-105.001512',
                      'location': '200-BLK S PLATTE RIVER DR',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '158614',
                      'time': '19:57:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.713941',
                      'lng': '-105.00389',
                      'location': 'S NAVAJO ST / W MAPLE AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '158767',
                      'time': '04:29:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.71395',
                      'lng': '-105.005104',
                      'location': '1350 W MAPLE AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '158774',
                      'time': '09:55:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.717541',
                      'lng': '-105.022772',
                      'location': 'N DECATUR ST / W IRVINGTON PL',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '159049',
                      'time': '00:24:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.717884',
                      'lng': '-105.02511',
                      'location': '75 N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '159059',
                      'time': '18:41:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.713048',
                      'lng': '-105.008655',
                      'location': 'S RARITAN ST / W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '159166',
                      'time': '21:08:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.717873',
                      'lng': '-105.02511',
                      'location': '74 N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '159487',
                      'time': '19:38:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.718151',
                      'lng': '-105.038507',
                      'location': 'W 1ST AVE / N OSCEOLA ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '159665',
                      'time': '09:00:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.718161',
                      'lng': '-105.025114',
                      'location': 'W 1ST AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '159909',
                      'time': '09:03:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.716567',
                      'lng': '-105.039681',
                      'location': 'S PERRY ST / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '160127',
                      'time': '11:12:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.716567',
                      'lng': '-105.039681',
                      'location': 'S PERRY ST / W ELLSWORTH AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '160133',
                      'time': '09:26:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.716573',
                      'lng': '-105.026337',
                      'location': 'W ELLSWORTH AVE / N GROVE ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '160146',
                      'time': '20:24:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.716567',
                      'lng': '-105.039681',
                      'location': 'S PERRY ST / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '160198',
                      'time': '11:34:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.716567',
                      'lng': '-105.039681',
                      'location': 'S PERRY ST / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '160204',
                      'time': '11:04:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.716567',
                      'lng': '-105.039681',
                      'location': 'S PERRY ST / W ELLSWORTH AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '160218',
                      'time': '09:16:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.718151',
                      'lng': '-105.038507',
                      'location': 'W 1ST AVE / N OSCEOLA ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '160249',
                      'time': '09:02:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.714966',
                      'lng': '-105.044496',
                      'location': 'W BAYAUD AVE / S UTICA ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '160321',
                      'time': '14:02:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.716642',
                      'lng': '-105.025078',
                      'location': 'W ELLSWORTH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '160747',
                      'time': '21:55:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.716642',
                      'lng': '-105.025078',
                      'location': 'W ELLSWORTH AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '160974',
                      'time': '19:24:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.716642',
                      'lng': '-105.025078',
                      'location': 'W ELLSWORTH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '160980',
                      'time': '00:58:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.716642',
                      'lng': '-105.025078',
                      'location': 'N FEDERAL BLVD / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '161341',
                      'time': '01:09:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.718157',
                      'lng': '-105.030017',
                      'location': 'W 1ST AVE / N IRVING ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '161456',
                      'time': '22:18:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.716567',
                      'lng': '-105.039681',
                      'location': 'S PERRY ST / W ELLSWORTH AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '161482',
                      'time': '08:15:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.717538',
                      'lng': '-105.025106',
                      'location': 'N FEDERAL BLVD / W IRVINGTON PL',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '161648',
                      'time': '21:37:16',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.718152',
                      'lng': '-105.033696',
                      'location': 'W 1ST AVE / N KING ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '162339',
                      'time': '01:32:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'File Only',
                      'district': '4',
                      'lat': '39.716859',
                      'lng': '-105.018371',
                      'location': 'W ELLSWORTH AVE / S BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '162632',
                      'time': '08:31:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.716642',
                      'lng': '-105.025078',
                      'location': 'W ELLSWORTH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '162686',
                      'time': '19:48:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.716727',
                      'lng': '-105.025081',
                      'location': '5 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '163308',
                      'time': '20:34:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.713379',
                      'lng': '-105.03246',
                      'location': '200-BLK S KNOX CT',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '164380',
                      'time': '21:55:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.713332',
                      'lng': '-105.053266',
                      'location': 'W CEDAR AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '164945',
                      'time': '22:04:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.713379',
                      'lng': '-105.03246',
                      'location': '200 S KNOX CT',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '164962',
                      'time': '00:32:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.71397',
                      'lng': '-105.02151',
                      'location': '146 S DALE CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '165046',
                      'time': '13:01:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.718148',
                      'lng': '-105.039702',
                      'location': 'N PERRY ST / W 1ST AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '165174',
                      'time': '14:03:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.716567',
                      'lng': '-105.02879',
                      'location': 'N HOOKER ST / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '165835',
                      'time': '23:30:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.718155',
                      'lng': '-105.032471',
                      'location': 'W 1ST AVE / N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '165892',
                      'time': '11:41:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.713053',
                      'lng': '-105.014488',
                      'location': 'W CEDAR AVE / S YUMA ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '166072',
                      'time': '20:24:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.713379',
                      'lng': '-105.03246',
                      'location': 'S KNOX CT / W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '166169',
                      'time': '21:49:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.714825',
                      'lng': '-105.025087',
                      'location': '100 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '166393',
                      'time': '01:43:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.714825',
                      'lng': '-105.025087',
                      'location': 'W BAYAUD AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '166668',
                      'time': '18:23:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.713378',
                      'lng': '-105.031225',
                      'location': '200 S JULIAN ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '167109',
                      'time': '04:34:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.716303',
                      'lng': '-105.031237',
                      'location': '18 S JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '167556',
                      'time': '10:42:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.713324',
                      'lng': '-105.05205',
                      'location': 'S ZENOBIA ST / W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '167946',
                      'time': '08:56:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.713379',
                      'lng': '-105.03246',
                      'location': 'W CEDAR AVE / S KNOX CT',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '168000',
                      'time': '20:25:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.713379',
                      'lng': '-105.03246',
                      'location': '200 S KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '168009',
                      'time': '22:07:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.714976',
                      'lng': '-105.03001',
                      'location': 'S IRVING ST / W BAYAUD AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '168060',
                      'time': '19:55:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Vehicle Towed',
                      'district': '4',
                      'lat': '39.713379',
                      'lng': '-105.03246',
                      'location': 'S KNOX CT / W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '168315',
                      'time': '13:08:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.71215',
                      'lng': '-105.006276',
                      'location': 'S PECOS ST / W BYERS PL',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '168641',
                      'time': '19:52:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.713379',
                      'lng': '-105.037293',
                      'location': 'S NEWTON ST / W CEDAR AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '169310',
                      'time': '08:00:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.714964',
                      'lng': '-105.039701',
                      'location': 'S PERRY ST / W BAYAUD AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '169320',
                      'time': '14:05:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.713374',
                      'lng': '-105.039686',
                      'location': '200 S PERRY ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '169634',
                      'time': '13:01:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.713379',
                      'lng': '-105.037293',
                      'location': '200 S NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '169800',
                      'time': '02:41:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.713379',
                      'lng': '-105.037293',
                      'location': 'W CEDAR AVE / S NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '169882',
                      'time': '23:32:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': '3 - Alarm Good',
                      'district': '4',
                      'lat': '39.714562',
                      'lng': '-105.037297',
                      'location': '125 S NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '169987',
                      'time': '04:56:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.714825',
                      'lng': '-105.025087',
                      'location': 'S FEDERAL BLVD / W BAYAUD AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '170104',
                      'time': '23:21:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.714972',
                      'lng': '-105.032464',
                      'location': 'S KNOX CT / W BAYAUD AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '170377',
                      'time': '02:57:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.713383',
                      'lng': '-105.030007',
                      'location': '200 S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '170414',
                      'time': '23:26:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.713383',
                      'lng': '-105.030007',
                      'location': '200 S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '170416',
                      'time': '20:27:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.714825',
                      'lng': '-105.025087',
                      'location': 'S FEDERAL BLVD / W BAYAUD AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '170702',
                      'time': '00:39:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.714205',
                      'lng': '-105.049393',
                      'location': 'W MAPLE PL / S XAVIER ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '171685',
                      'time': '01:39:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.713374',
                      'lng': '-105.039686',
                      'location': 'S PERRY ST / W CEDAR AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '171962',
                      'time': '09:03:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.714825',
                      'lng': '-105.025087',
                      'location': '100 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '172310',
                      'time': '01:51:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.713374',
                      'lng': '-105.039686',
                      'location': 'S PERRY ST / W CEDAR AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '172554',
                      'time': '11:10:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.713374',
                      'lng': '-105.039686',
                      'location': 'S PERRY ST / W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '172556',
                      'time': '11:26:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.714966',
                      'lng': '-105.042088',
                      'location': 'W BAYAUD AVE / S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '172592',
                      'time': '14:33:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.716502',
                      'lng': '-105.025081',
                      'location': '9 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '172693',
                      'time': '18:56:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.713374',
                      'lng': '-105.039686',
                      'location': 'S PERRY ST / W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '173249',
                      'time': '13:27:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.713006',
                      'lng': '-105.023849',
                      'location': 'S ELIOT ST / W CEDAR AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '174445',
                      'time': '15:22:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.713005',
                      'lng': '-105.022681',
                      'location': 'S DECATUR ST / W CEDAR AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '174780',
                      'time': '18:12:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711787',
                      'lng': '-105.043256',
                      'location': 'S STUART ST / W BYERS PL',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '175093',
                      'time': '11:06:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.711782',
                      'lng': '-105.039694',
                      'location': 'S PERRY ST / W BYERS PL',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '175395',
                      'time': '11:56:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.71215',
                      'lng': '-105.006276',
                      'location': 'W BYERS PL / S PECOS ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '175530',
                      'time': '16:11:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Detox Van',
                      'district': '4',
                      'lat': '39.71215',
                      'lng': '-105.006276',
                      'location': 'S PECOS ST / W BYERS PL',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '175540',
                      'time': '11:19:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.71215',
                      'lng': '-105.006276',
                      'location': 'W BYERS PL / S PECOS ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '175554',
                      'time': '18:53:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.712997',
                      'lng': '-105.025082',
                      'location': '200 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '175894',
                      'time': '23:02:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.713006',
                      'lng': '-105.023849',
                      'location': '200 S ELIOT ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '176260',
                      'time': '16:38:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.711782',
                      'lng': '-105.039694',
                      'location': 'S PERRY ST / W BYERS PL',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '176588',
                      'time': '21:02:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.711782',
                      'lng': '-105.039694',
                      'location': 'S PERRY ST / W BYERS PL',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '177194',
                      'time': '09:21:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.71215',
                      'lng': '-105.007467',
                      'location': '1449 W BYERS PL',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '177370',
                      'time': '12:44:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.712997',
                      'lng': '-105.025082',
                      'location': '200-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '177436',
                      'time': '02:05:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.71215',
                      'lng': '-105.006276',
                      'location': 'S PECOS ST / W BYERS PL',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '178208',
                      'time': '22:00:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.72293',
                      'lng': '-105.032483',
                      'location': '400 N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '180272',
                      'time': '12:17:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.723939',
                      'lng': '-105.02224',
                      'location': 'W 5TH AVE / N DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '180393',
                      'time': '04:39:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.719749',
                      'lng': '-105.032474',
                      'location': 'N KNOX CT / W 2ND AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '180761',
                      'time': '18:25:07',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.719749',
                      'lng': '-105.032474',
                      'location': 'W 2ND AVE / N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '180768',
                      'time': '22:07:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.723939',
                      'lng': '-105.02224',
                      'location': 'W 5TH AVE / N DECATUR ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '181559',
                      'time': '01:41:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.722298',
                      'lng': '-105.028803',
                      'location': '360 N HOOKER ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '181610',
                      'time': '23:04:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.722939',
                      'lng': '-105.037281',
                      'location': 'W 4TH AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '181835',
                      'time': '10:51:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.721331',
                      'lng': '-105.043285',
                      'location': '300 N STUART ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '181887',
                      'time': '12:00:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Vehicle Towed',
                      'district': '4',
                      'lat': '39.721331',
                      'lng': '-105.043285',
                      'location': '300-BLK N STUART ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '181892',
                      'time': '16:17:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.720258',
                      'lng': '-105.01865',
                      'location': 'W 2ND AVE / N BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '181976',
                      'time': '22:37:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.720258',
                      'lng': '-105.01865',
                      'location': 'W 2ND AVE / N BRYANT ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '181982',
                      'time': '06:49:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.722901',
                      'lng': '-105.025115',
                      'location': 'N FEDERAL BLVD / W SHORT PL',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '182280',
                      'time': '00:33:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.71936',
                      'lng': '-105.025096',
                      'location': 'N FEDERAL BLVD / W PARK PL',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '184876',
                      'time': '03:48:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.722038',
                      'lng': '-105.018664',
                      'location': '400-Blk N BRYANT ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '185047',
                      'time': '00:47:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.71936',
                      'lng': '-105.025096',
                      'location': 'N FEDERAL BLVD / W PARK PL',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '185802',
                      'time': '03:50:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.720265',
                      'lng': '-105.022779',
                      'location': 'W 2ND AVE / N DECATUR ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '186690',
                      'time': '22:22:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.71936',
                      'lng': '-105.025096',
                      'location': 'W PARK PL / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '186722',
                      'time': '03:02:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.722868',
                      'lng': '-105.04508',
                      'location': 'N UTICA ST / W SHORT PL',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '186952',
                      'time': '00:35:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.719749',
                      'lng': '-105.032474',
                      'location': 'W 2ND AVE / N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '187512',
                      'time': '18:05:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '4',
                      'lat': '39.718158',
                      'lng': '-105.028794',
                      'location': 'W 1ST AVE / N HOOKER ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '189064',
                      'time': '14:54:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.71822',
                      'lng': '-105.032471',
                      'location': '105 N KNOX CT',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '189161',
                      'time': '11:47:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.716568',
                      'lng': '-105.032472',
                      'location': 'W ELLSWORTH AVE / S KNOX CT',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '189296',
                      'time': '15:22:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.718161',
                      'lng': '-105.025114',
                      'location': '3000 W 1ST AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '189433',
                      'time': '18:52:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.71936',
                      'lng': '-105.025096',
                      'location': 'W PARK PL / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '192385',
                      'time': '20:17:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.720396',
                      'lng': '-105.050941',
                      'location': '200-BLK N YATES ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '192427',
                      'time': '14:24:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.717541',
                      'lng': '-105.02041',
                      'location': 'N BRYANT WAY / N CLAY ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '194073',
                      'time': '20:59:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.716563',
                      'lng': '-105.037304',
                      'location': 'W ELLSWORTH AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '194123',
                      'time': '02:40:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.71664',
                      'lng': '-105.022765',
                      'location': 'W ELLSWORTH AVE / N DECATUR ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '194218',
                      'time': '18:11:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.71822',
                      'lng': '-105.032471',
                      'location': '105 N KNOX CT',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '194305',
                      'time': '07:55:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.718156',
                      'lng': '-105.036111',
                      'location': 'W 1ST AVE / N MEADE ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '194444',
                      'time': '12:55:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.718155',
                      'lng': '-105.032471',
                      'location': 'W 1ST AVE / N KNOX CT',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '194456',
                      'time': '10:41:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.718161',
                      'lng': '-105.025114',
                      'location': 'W 1ST AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '194604',
                      'time': '19:57:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.71814',
                      'lng': '-105.04328',
                      'location': '100-BLK N STUART ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '194712',
                      'time': '15:23:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.71814',
                      'lng': '-105.04328',
                      'location': '100 N STUART ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '194726',
                      'time': '10:48:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.718157',
                      'lng': '-105.030017',
                      'location': '100 N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '194788',
                      'time': '10:06:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.716566',
                      'lng': '-105.033694',
                      'location': 'W ELLSWORTH AVE / N KING ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '195023',
                      'time': '01:22:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.716568',
                      'lng': '-105.032472',
                      'location': 'W ELLSWORTH AVE / S KNOX CT',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '195038',
                      'time': '21:29:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.716632',
                      'lng': '-105.05327',
                      'location': 'S SHERIDAN BLVD / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '195618',
                      'time': '23:50:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.716632',
                      'lng': '-105.05327',
                      'location': 'N SHERIDAN BLVD / W ELLSWORTH AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '195619',
                      'time': '21:15:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.716642',
                      'lng': '-105.025078',
                      'location': 'W ELLSWORTH AVE / N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '195674',
                      'time': '19:09:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.717538',
                      'lng': '-105.025106',
                      'location': 'W IRVINGTON PL / N FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '195825',
                      'time': '07:34:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.716564',
                      'lng': '-105.030017',
                      'location': 'N IRVING ST / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '195946',
                      'time': '20:01:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.717367',
                      'lng': '-105.025101',
                      'location': '35 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '196122',
                      'time': '16:57:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.716563',
                      'lng': '-105.034906',
                      'location': 'W ELLSWORTH AVE / N LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '196228',
                      'time': '23:06:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.716563',
                      'lng': '-105.034906',
                      'location': 'N LOWELL BLVD / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '196232',
                      'time': '22:29:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.716563',
                      'lng': '-105.034906',
                      'location': 'W ELLSWORTH AVE / N LOWELL BLVD',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '196240',
                      'time': '09:57:57',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.718164',
                      'lng': '-105.045689',
                      'location': '4600 W 1ST AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '197123',
                      'time': '12:12:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.716564',
                      'lng': '-105.030017',
                      'location': 'W ELLSWORTH AVE / N IRVING ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '197173',
                      'time': '13:52:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.716642',
                      'lng': '-105.025078',
                      'location': 'W ELLSWORTH AVE / N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '197175',
                      'time': '18:44:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.716642',
                      'lng': '-105.025078',
                      'location': 'N FEDERAL BLVD / W ELLSWORTH AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '197178',
                      'time': '22:42:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.71816',
                      'lng': '-105.026337',
                      'location': 'W 1ST AVE / N GROVE ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '197220',
                      'time': '22:44:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.718448',
                      'lng': '-105.025109',
                      'location': '100-GROVE N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '197362',
                      'time': '20:11:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.716642',
                      'lng': '-105.025078',
                      'location': 'W ELLSWORTH AVE / N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '197520',
                      'time': '21:20:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.71814',
                      'lng': '-105.04328',
                      'location': 'W 1ST AVE / N STUART ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '197979',
                      'time': '17:08:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.716563',
                      'lng': '-105.037304',
                      'location': 'W ELLSWORTH AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '198015',
                      'time': '23:46:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.718153',
                      'lng': '-105.037309',
                      'location': 'W 1ST AVE / N NEWTON ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '198046',
                      'time': '07:28:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.716568',
                      'lng': '-105.032472',
                      'location': 'N KNOX CT / W ELLSWORTH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '198354',
                      'time': '23:34:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.718155',
                      'lng': '-105.032471',
                      'location': 'W 1ST AVE / N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '198685',
                      'time': '11:23:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.718158',
                      'lng': '-105.028794',
                      'location': 'W 1ST AVE / N HOOKER ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '198709',
                      'time': '20:45:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.718448',
                      'lng': '-105.025109',
                      'location': '100 N FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '199208',
                      'time': '21:52:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.724554',
                      'lng': '-105.040535',
                      'location': '4100 W 5TH AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '204397',
                      'time': '12:11:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.724731',
                      'lng': '-105.053257',
                      'location': 'W 6TH AVE / N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '204407',
                      'time': '00:56:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.724985',
                      'lng': '-105.053255',
                      'location': '550 N SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '205340',
                      'time': '16:13:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.724985',
                      'lng': '-105.053255',
                      'location': '550 N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '205342',
                      'time': '14:30:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.724985',
                      'lng': '-105.053255',
                      'location': '550 N SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '205343',
                      'time': '14:23:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.725497',
                      'lng': '-105.039456',
                      'location': 'W 6TH AVE / N PERRY ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '206037',
                      'time': '00:07:17',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.724529',
                      'lng': '-105.031261',
                      'location': 'W 5TH AVE / N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '206514',
                      'time': '23:36:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.724529',
                      'lng': '-105.031261',
                      'location': 'W 5TH AVE / N JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '206811',
                      'time': '00:07:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.725497',
                      'lng': '-105.039456',
                      'location': 'W 6TH AVE / N PERRY ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '208774',
                      'time': '03:29:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.724708',
                      'lng': '-105.018671',
                      'location': '543 N BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '208979',
                      'time': '22:09:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.725527',
                      'lng': '-105.045131',
                      'location': 'W 6TH AVE / N UTICA ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '209420',
                      'time': '08:40:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.721334',
                      'lng': '-105.03732',
                      'location': 'W 3RD AVE / N NEWTON ST',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '209937',
                      'time': '11:20:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.721334',
                      'lng': '-105.03732',
                      'location': 'W 3RD AVE / N NEWTON ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '209944',
                      'time': '01:17:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.724545',
                      'lng': '-105.039456',
                      'location': 'N PERRY ST / W 5TH AVE',
                      'outcome': 'citation',
                      'precinct': '411',
                      'raw_row_number': '210509',
                      'time': '21:35:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.724528',
                      'lng': '-105.035103',
                      'location': '500-BLK N LOWELL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '212362',
                      'time': '01:58:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.721331',
                      'lng': '-105.039716',
                      'location': '300 N PERRY ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '215365',
                      'time': '00:06:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.721339',
                      'lng': '-105.032481',
                      'location': 'W 3RD AVE / N KNOX CT',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '215436',
                      'time': '21:04:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.721339',
                      'lng': '-105.032481',
                      'location': 'W 3RD AVE / N KNOX CT',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '215448',
                      'time': '17:12:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.724152',
                      'lng': '-105.025131',
                      'location': '500 N FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '215470',
                      'time': '00:00:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.724152',
                      'lng': '-105.025131',
                      'location': '500 N FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '215476',
                      'time': '16:22:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.722954',
                      'lng': '-105.040523',
                      'location': 'W 4TH AVE / N QUITMAN ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '216564',
                      'time': '23:38:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.721581',
                      'lng': '-105.053269',
                      'location': '300 N SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '216679',
                      'time': '23:35:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.721581',
                      'lng': '-105.053269',
                      'location': '300-BLK N SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '216680',
                      'time': '14:45:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.722954',
                      'lng': '-105.040523',
                      'location': 'W 4TH AVE / N QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '217177',
                      'time': '11:13:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Vehicle Towed',
                      'district': '4',
                      'lat': '39.722217',
                      'lng': '-105.05209',
                      'location': 'N ZENOBIA ST / W 4TH AVE',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '217675',
                      'time': '12:41:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.723482',
                      'lng': '-105.023598',
                      'location': '2900-Blk W 5TH AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '217850',
                      'time': '04:24:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.72295',
                      'lng': '-105.03945',
                      'location': '400-BLK N PERRY ST',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '218686',
                      'time': '00:44:09',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.722062',
                      'lng': '-105.022116',
                      'location': 'W 4TH AVE / N DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '411',
                      'raw_row_number': '218867',
                      'time': '01:28:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.721331',
                      'lng': '-105.039716',
                      'location': '300 N PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '219301',
                      'time': '01:11:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.723494',
                      'lng': '-105.025127',
                      'location': 'N FEDERAL BLVD / W 5TH AVE',
                      'outcome': 'arrest',
                      'precinct': '411',
                      'raw_row_number': '219337',
                      'time': '00:21:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.723494',
                      'lng': '-105.025127',
                      'location': 'N FEDERAL BLVD / W 5TH AVE',
                      'outcome': 'warning',
                      'precinct': '411',
                      'raw_row_number': '219347',
                      'time': '02:16:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'}],
             '412': [{'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.696758',
                      'lng': '-105.036706',
                      'location': 'W MISSISSIPPI AVE / S NEWTON ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '88649',
                      'time': '01:20:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.696741',
                      'lng': '-105.027442',
                      'location': 'W MISSISSIPPI AVE / S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '88778',
                      'time': '00:53:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696766',
                      'lng': '-105.048398',
                      'location': 'W MISSISSIPPI AVE / S WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '89182',
                      'time': '23:57:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '4',
                      'lat': '39.696737',
                      'lng': '-105.022726',
                      'location': 'W MISSISSIPPI AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '89574',
                      'time': '22:20:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.696737',
                      'lng': '-105.022726',
                      'location': '2800-BLK W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '90181',
                      'time': '07:25:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': 'W MISSISSIPPI AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '90363',
                      'time': '01:53:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': 'S FEDERAL BLVD / W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '90432',
                      'time': '22:07:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696733',
                      'lng': '-105.031011',
                      'location': '1100 S JULIAN ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '90478',
                      'time': '13:11:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': '1100-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '90723',
                      'time': '01:58:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': 'W MISSISSIPPI AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '90811',
                      'time': '23:08:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.696745',
                      'lng': '-105.02974',
                      'location': '1100 S IRVING ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '90836',
                      'time': '21:09:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': 'W MISSISSIPPI AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '90970',
                      'time': '02:52:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': '1100 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '90971',
                      'time': '23:34:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.696739',
                      'lng': '-105.021554',
                      'location': 'W MISSISSIPPI AVE / S DALE CT',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '91118',
                      'time': '22:36:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.696739',
                      'lng': '-105.021554',
                      'location': '1100 S DALE CT',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '91121',
                      'time': '09:52:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.696734',
                      'lng': '-105.023718',
                      'location': '2900 W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '91304',
                      'time': '02:22:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.696734',
                      'lng': '-105.023718',
                      'location': 'S ELIOT ST / W MISSISSIPPI AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '91311',
                      'time': '18:51:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.696758',
                      'lng': '-105.017015',
                      'location': 'W MISSISSIPPI AVE / S ALCOTT ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '91399',
                      'time': '22:30:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': 'W MISSISSIPPI AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '91639',
                      'time': '17:41:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.696742',
                      'lng': '-105.02036',
                      'location': 'W MISSISSIPPI AVE / S CLAY ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '91868',
                      'time': '23:46:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.696758',
                      'lng': '-105.017015',
                      'location': 'W MISSISSIPPI AVE / S ALCOTT ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '91978',
                      'time': '02:13:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.696662',
                      'lng': '-104.992946',
                      'location': 'S PLATTE RIVER DR / W MISSISSIPPI AVE',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '92174',
                      'time': '14:37:32',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': '1100-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '92271',
                      'time': '21:19:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': 'S FEDERAL BLVD / W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '92273',
                      'time': '22:34:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': 'S FEDERAL BLVD / W MISSISSIPPI AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '92284',
                      'time': '23:51:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': 'S FEDERAL BLVD / W MISSISSIPPI AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '92294',
                      'time': '09:31:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.696747',
                      'lng': '-105.025059',
                      'location': '1100-BLK S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '92298',
                      'time': '20:57:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.696742',
                      'lng': '-105.02036',
                      'location': 'W MISSISSIPPI AVE / S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '92483',
                      'time': '02:52:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696729',
                      'lng': '-105.00871',
                      'location': '1800 W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '93385',
                      'time': '00:41:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696739',
                      'lng': '-105.021554',
                      'location': 'W MISSISSIPPI AVE / S DALE CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '93581',
                      'time': '00:45:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.696748',
                      'lng': '-105.012708',
                      'location': '1100 S TEJON ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '93710',
                      'time': '21:57:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.69689',
                      'lng': '-105.053225',
                      'location': 'MORRISON RD / S SHERIDAN BLVD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '93736',
                      'time': '23:51:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.696693',
                      'lng': '-104.99915',
                      'location': 'S JASON ST / W MISSISSIPPI AVE',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '94020',
                      'time': '01:12:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.696732',
                      'lng': '-105.009363',
                      'location': 'W MISSISSIPPI AVE / S RARITAN ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '94056',
                      'time': '23:17:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.696732',
                      'lng': '-105.009363',
                      'location': 'S RARITAN ST / W MISSISSIPPI AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '94091',
                      'time': '17:13:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.696732',
                      'lng': '-105.009363',
                      'location': 'W MISSISSIPPI AVE / S RARITAN ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '94097',
                      'time': '01:18:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.696748',
                      'lng': '-105.012708',
                      'location': 'W MISSISSIPPI AVE / S TEJON ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '94150',
                      'time': '12:50:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.696748',
                      'lng': '-105.012708',
                      'location': 'W MISSISSIPPI AVE / S TEJON ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '94346',
                      'time': '20:28:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.69674',
                      'lng': '-105.010709',
                      'location': '1900 W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '94577',
                      'time': '07:05:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.696671',
                      'lng': '-104.99444',
                      'location': 'W MISSISSIPPI AVE / S FOX ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '94949',
                      'time': '01:45:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696748',
                      'lng': '-105.012708',
                      'location': 'W MISSISSIPPI AVE / S TEJON ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '95339',
                      'time': '02:09:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.696683',
                      'lng': '-104.996793',
                      'location': 'S HURON ST / W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '96459',
                      'time': '13:07:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696764',
                      'lng': '-105.01569',
                      'location': 'W MISSISSIPPI AVE / S ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '96585',
                      'time': '14:44:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696725',
                      'lng': '-105.006595',
                      'location': 'W MISSISSIPPI AVE / S QUIVAS ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '97831',
                      'time': '05:02:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.696713',
                      'lng': '-105.003422',
                      'location': '1400 W MISSISSIPPI AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '98022',
                      'time': '03:29:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.697919',
                      'lng': '-105.025081',
                      'location': '1036 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '98683',
                      'time': '13:15:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.69807',
                      'lng': '-105.051449',
                      'location': 'MORRISON RD / W TENNESSEE AVE',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '98710',
                      'time': '23:08:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.697452',
                      'lng': '-105.052319',
                      'location': '5100 MORRISON RD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '99207',
                      'time': '01:08:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.69856',
                      'lng': '-105.050762',
                      'location': 'S YATES ST / MORRISON RD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '99413',
                      'time': '23:06:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.698527',
                      'lng': '-105.026392',
                      'location': '1000 S GROVE ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '99531',
                      'time': '13:17:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.698568',
                      'lng': '-105.040231',
                      'location': '1000 S PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '100098',
                      'time': '13:36:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.696956',
                      'lng': '-105.025065',
                      'location': '1087 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '100392',
                      'time': '02:23:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.697461',
                      'lng': '-105.015692',
                      'location': '1050 S ZUNI ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '100481',
                      'time': '12:02:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.697694',
                      'lng': '-105.025081',
                      'location': '1048 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '100518',
                      'time': '23:19:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.698317',
                      'lng': '-105.012621',
                      'location': 'W TENNESSEE AVE / S TEJON ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '100603',
                      'time': '23:05:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.698317',
                      'lng': '-105.012621',
                      'location': 'S TEJON ST / W TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '100629',
                      'time': '18:36:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.69856',
                      'lng': '-105.029745',
                      'location': '1000 S IRVING ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '100780',
                      'time': '22:39:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.697097',
                      'lng': '-105.034435',
                      'location': 'W MISSISSIPPI AVE / S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '100875',
                      'time': '00:20:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': '1000 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '100915',
                      'time': '13:41:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': 'S FEDERAL BLVD / W TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '100920',
                      'time': '17:54:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.698576',
                      'lng': '-105.041404',
                      'location': 'W TENNESSEE AVE / S QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '101333',
                      'time': '09:01:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': '1000 S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '101419',
                      'time': '00:44:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.6986',
                      'lng': '-105.023846',
                      'location': '2900 W TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '101484',
                      'time': '13:14:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.698481',
                      'lng': '-104.995645',
                      'location': '700 W TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '101640',
                      'time': '03:01:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.698549',
                      'lng': '-105.001522',
                      'location': '1000-BLK S LIPAN ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '101736',
                      'time': '01:50:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.698833',
                      'lng': '-105.029746',
                      'location': 'W FORD PL / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '101880',
                      'time': '00:37:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': 'S FEDERAL BLVD / W TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '102176',
                      'time': '22:29:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': 'S FEDERAL BLVD / W TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '102650',
                      'time': '22:56:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': '1000-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '102836',
                      'time': '18:27:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': '1000 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '102840',
                      'time': '14:28:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': 'W TENNESSEE AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '103005',
                      'time': '23:55:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': 'S FEDERAL BLVD / W TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '103008',
                      'time': '17:56:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.698592',
                      'lng': '-105.025082',
                      'location': '1000-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '103144',
                      'time': '17:34:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.6986',
                      'lng': '-105.023846',
                      'location': 'S ELIOT ST / W TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '103463',
                      'time': '12:52:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.700358',
                      'lng': '-105.036761',
                      'location': '3800-BLK W KENTUCKY AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '103740',
                      'time': '08:38:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '4',
                      'lat': '39.699117',
                      'lng': '-105.049968',
                      'location': '4900-BLK MORRISON RD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '103782',
                      'time': '23:00:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.699117',
                      'lng': '-105.049968',
                      'location': '4900-BLK MORRISON RD',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '103807',
                      'time': '22:50:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.699456',
                      'lng': '-104.996769',
                      'location': 'S HURON ST / W TENNESSEE AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '104067',
                      'time': '18:19:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.699955',
                      'lng': '-105.014077',
                      'location': '901 S VALLEJO ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '104148',
                      'time': '11:02:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.700103',
                      'lng': '-105.048562',
                      'location': '900-BLK S WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '104150',
                      'time': '02:13:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.699997',
                      'lng': '-105.009069',
                      'location': '872 S RARITAN ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '104261',
                      'time': '08:24:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.700348',
                      'lng': '-105.035556',
                      'location': 'W KENTUCKY AVE / S MEADE ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '104319',
                      'time': '23:08:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.699144',
                      'lng': '-105.012139',
                      'location': 'S TEJON ST / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '104597',
                      'time': '15:24:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.699231',
                      'lng': '-105.02508',
                      'location': 'W FORD PL / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '104651',
                      'time': '17:01:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.700156',
                      'lng': '-105.027417',
                      'location': '911 S HAZEL CT',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '104723',
                      'time': '14:01:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.700156',
                      'lng': '-105.027417',
                      'location': '911 S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '104745',
                      'time': '13:19:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.700103',
                      'lng': '-105.048562',
                      'location': '900-BLK S WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '104799',
                      'time': '02:13:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700348',
                      'lng': '-105.034452',
                      'location': 'S LOWELL BLVD / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '104993',
                      'time': '21:10:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.700358',
                      'lng': '-105.036761',
                      'location': 'W KENTUCKY AVE / S NEWTON ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '105006',
                      'time': '00:06:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.700358',
                      'lng': '-105.036761',
                      'location': '900 S NEWTON ST',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '105022',
                      'time': '01:12:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.700103',
                      'lng': '-105.048562',
                      'location': '900-BLK S WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '105397',
                      'time': '02:13:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.6991',
                      'lng': '-105.010534',
                      'location': 'W KENTUCKY AVE / S SHOSHONE ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '105806',
                      'time': '17:04:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700342',
                      'lng': '-105.029768',
                      'location': 'S IRVING ST / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '105891',
                      'time': '20:22:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.700406',
                      'lng': '-105.045364',
                      'location': 'S UTICA ST / W KENTUCKY AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '106089',
                      'time': '01:32:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700386',
                      'lng': '-105.027525',
                      'location': 'W KENTUCKY AVE / S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '106250',
                      'time': '18:39:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.700377',
                      'lng': '-105.041413',
                      'location': 'W KENTUCKY AVE / S QUITMAN ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '106284',
                      'time': '20:14:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.700413',
                      'lng': '-105.048674',
                      'location': 'W KENTUCKY AVE / S WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '106476',
                      'time': '21:44:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700342',
                      'lng': '-105.029768',
                      'location': 'W KENTUCKY AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '106519',
                      'time': '22:38:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.700342',
                      'lng': '-105.029768',
                      'location': 'W KENTUCKY AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '106534',
                      'time': '16:15:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700342',
                      'lng': '-105.029768',
                      'location': 'W KENTUCKY AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '106703',
                      'time': '00:01:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': 'W KENTUCKY AVE / MORRISON RD',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '106742',
                      'time': '17:19:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Detox Van',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': 'MORRISON RD / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '106743',
                      'time': '22:11:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': '4800-BLK MORRISON RD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '106750',
                      'time': '22:30:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': '4800 MORRISON RD',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '106774',
                      'time': '22:22:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700406',
                      'lng': '-105.045364',
                      'location': 'S UTICA ST / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107016',
                      'time': '17:06:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.700342',
                      'lng': '-105.029768',
                      'location': 'W KENTUCKY AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107150',
                      'time': '02:23:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700406',
                      'lng': '-105.045364',
                      'location': 'W KENTUCKY AVE / S UTICA ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107190',
                      'time': '01:59:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': '4800 MORRISON RD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107212',
                      'time': '23:08:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': 'MORRISON RD / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107241',
                      'time': '00:22:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'File Only',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': '4800 MORRISON RD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107242',
                      'time': '01:06:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700412',
                      'lng': '-105.046959',
                      'location': 'W KENTUCKY AVE / S VRAIN ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107331',
                      'time': '02:10:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.700386',
                      'lng': '-105.027525',
                      'location': 'W KENTUCKY AVE / S HAZEL CT',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '107357',
                      'time': '22:25:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': 'W KENTUCKY AVE / MORRISON RD',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '107402',
                      'time': '22:40:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700433',
                      'lng': '-105.05109',
                      'location': 'S YATES ST / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107416',
                      'time': '23:11:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700386',
                      'lng': '-105.027525',
                      'location': 'W KENTUCKY AVE / S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107548',
                      'time': '17:46:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.70037',
                      'lng': '-105.039099',
                      'location': 'W KENTUCKY AVE / S PATTON CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107594',
                      'time': '23:11:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.70037',
                      'lng': '-105.039099',
                      'location': 'W KENTUCKY AVE / S PATTON CT',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '107609',
                      'time': '23:05:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700366',
                      'lng': '-105.037898',
                      'location': 'W KENTUCKY AVE / S OSCEOLA ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107622',
                      'time': '21:52:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': '4800-BLK MORRISON RD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107858',
                      'time': '23:06:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700419',
                      'lng': '-105.048121',
                      'location': 'MORRISON RD / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107884',
                      'time': '23:41:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700412',
                      'lng': '-105.046959',
                      'location': 'W KENTUCKY AVE / S VRAIN ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '107934',
                      'time': '00:06:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700391',
                      'lng': '-105.043748',
                      'location': 'S TENNYSON ST / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '108001',
                      'time': '22:59:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.700386',
                      'lng': '-105.027525',
                      'location': 'W KENTUCKY AVE / S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '108199',
                      'time': '00:19:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.70037',
                      'lng': '-105.039099',
                      'location': 'W KENTUCKY AVE / S PATTON CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '108216',
                      'time': '18:55:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.70042',
                      'lng': '-105.023856',
                      'location': 'W KENTUCKY AVE / S ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '108568',
                      'time': '21:53:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700386',
                      'lng': '-105.027525',
                      'location': 'W KENTUCKY AVE / S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '108789',
                      'time': '22:54:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.700412',
                      'lng': '-105.02508',
                      'location': '900-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '108915',
                      'time': '00:38:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700412',
                      'lng': '-105.02508',
                      'location': 'W KENTUCKY AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '109002',
                      'time': '21:05:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.700421',
                      'lng': '-105.022695',
                      'location': 'S DECATUR ST / W KENTUCKY AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '109362',
                      'time': '23:48:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.700412',
                      'lng': '-105.02508',
                      'location': 'W KENTUCKY AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '109443',
                      'time': '20:55:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.700412',
                      'lng': '-105.02508',
                      'location': '3000 W KENTUCKY AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '109642',
                      'time': '23:15:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.70042',
                      'lng': '-105.023856',
                      'location': 'S ELIOT ST / W KENTUCKY AVE',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '109669',
                      'time': '21:54:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700509',
                      'lng': '-105.02508',
                      'location': '890 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '109989',
                      'time': '18:00:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.700412',
                      'lng': '-105.02508',
                      'location': 'W KENTUCKY AVE / S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '110095',
                      'time': '23:29:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700509',
                      'lng': '-105.02508',
                      'location': '890 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '110150',
                      'time': '03:16:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700412',
                      'lng': '-105.02508',
                      'location': '3000 W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '110229',
                      'time': '01:12:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.70042',
                      'lng': '-105.023856',
                      'location': 'W KENTUCKY AVE / S ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '110442',
                      'time': '17:58:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.700441',
                      'lng': '-105.019229',
                      'location': 'S CANOSA CT / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '110520',
                      'time': '23:25:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.700412',
                      'lng': '-105.02508',
                      'location': 'S FEDERAL BLVD / W KENTUCKY AVE',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '110624',
                      'time': '20:29:43',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.701333',
                      'lng': '-105.025078',
                      'location': 'S FEDERAL BLVD / W ADA PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '111018',
                      'time': '00:00:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.700425',
                      'lng': '-105.020371',
                      'location': 'S CLAY ST / W KENTUCKY AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '111109',
                      'time': '18:38:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.701114',
                      'lng': '-105.042358',
                      'location': 'S RALEIGH ST / W ADA PL',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '113175',
                      'time': '00:40:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.70218',
                      'lng': '-105.039116',
                      'location': '800 S PATTON CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '114038',
                      'time': '20:04:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.702079',
                      'lng': '-105.025083',
                      'location': 'W OHIO AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '114431',
                      'time': '21:56:06',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.702079',
                      'lng': '-105.025083',
                      'location': 'W OHIO AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '114501',
                      'time': '21:23:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.702165',
                      'lng': '-105.03677',
                      'location': 'S NEWTON ST / W OHIO AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '114576',
                      'time': '12:07:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.702187',
                      'lng': '-105.04086',
                      'location': 'S QUITMAN ST / W OHIO AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '114706',
                      'time': '22:23:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.702234',
                      'lng': '-105.029805',
                      'location': 'W OHIO AVE / S IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '114766',
                      'time': '04:02:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.70224',
                      'lng': '-105.032433',
                      'location': '800-BLK S KNOX CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '114874',
                      'time': '17:45:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.702234',
                      'lng': '-105.029805',
                      'location': 'S IRVING ST / W OHIO AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '115098',
                      'time': '11:34:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.702079',
                      'lng': '-105.025083',
                      'location': 'W OHIO AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '115637',
                      'time': '19:10:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.702552',
                      'lng': '-105.013328',
                      'location': 'S VALLEJO ST / W OHIO AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '115787',
                      'time': '18:58:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.702887',
                      'lng': '-105.015692',
                      'location': '2400 W OHIO AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '115842',
                      'time': '15:03:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.7022',
                      'lng': '-105.045579',
                      'location': 'MORRISON RD / W OHIO AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '115874',
                      'time': '23:38:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.70311',
                      'lng': '-105.025084',
                      'location': 'S FEDERAL BLVD / W WALSH PL',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '115954',
                      'time': '23:08:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.703374',
                      'lng': '-105.012156',
                      'location': '741 S UMATILLA WAY',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '116071',
                      'time': '14:52:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.703498',
                      'lng': '-105.042378',
                      'location': 'W WALSH PL / S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '116103',
                      'time': '07:31:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.703443',
                      'lng': '-104.996654',
                      'location': '700 S HURON ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '116110',
                      'time': '21:39:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.703089',
                      'lng': '-105.03912',
                      'location': 'W WALSH PL / S PATTON CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '116321',
                      'time': '19:22:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.702079',
                      'lng': '-105.025083',
                      'location': 'W OHIO AVE / S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '116381',
                      'time': '01:39:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.703131',
                      'lng': '-105.032436',
                      'location': 'S KNOX CT / W WALSH PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '116503',
                      'time': '07:25:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.703125',
                      'lng': '-105.029805',
                      'location': 'S IRVING ST / W WALSH PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '116564',
                      'time': '07:29:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.703071',
                      'lng': '-105.036771',
                      'location': 'S NEWTON ST / W WALSH PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '116638',
                      'time': '12:55:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.702553',
                      'lng': '-105.010997',
                      'location': '800 S TEJON ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '117049',
                      'time': '22:06:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.70312',
                      'lng': '-105.027528',
                      'location': 'W WALSH PL / S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '117878',
                      'time': '00:16:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.703986',
                      'lng': '-105.053247',
                      'location': 'W GILL PL / S SHERIDAN BLVD',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '118038',
                      'time': '23:46:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.703948',
                      'lng': '-105.025084',
                      'location': 'W EXPOSITION AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '118253',
                      'time': '22:36:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.703928',
                      'lng': '-105.015696',
                      'location': 'W EXPOSITION AVE / S ZUNI ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '118465',
                      'time': '23:10:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.703972',
                      'lng': '-105.005055',
                      'location': '700-BLK S OSAGE ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '118641',
                      'time': '22:11:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.703948',
                      'lng': '-105.025084',
                      'location': 'S FEDERAL BLVD / W EXPOSITION AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '118905',
                      'time': '03:04:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.703948',
                      'lng': '-105.025084',
                      'location': 'W EXPOSITION AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '118954',
                      'time': '00:33:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.703948',
                      'lng': '-105.025084',
                      'location': 'S FEDERAL BLVD / W EXPOSITION AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '118956',
                      'time': '16:20:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.703948',
                      'lng': '-105.025084',
                      'location': 'S FEDERAL BLVD / W EXPOSITION AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '119126',
                      'time': '00:33:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.703972',
                      'lng': '-105.043062',
                      'location': 'MORRISON RD / W WALSH PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '119363',
                      'time': '21:52:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.703892',
                      'lng': '-105.022701',
                      'location': 'W EXPOSITION AVE / S DECATUR ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '119387',
                      'time': '12:03:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.704018',
                      'lng': '-105.029807',
                      'location': 'W EXPOSITION AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '119449',
                      'time': '07:27:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.703973',
                      'lng': '-105.010983',
                      'location': 'W EXPOSITION AVE / S TEJON ST',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '119767',
                      'time': '22:13:24',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.703973',
                      'lng': '-105.010983',
                      'location': 'W EXPOSITION AVE / S TEJON ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '119774',
                      'time': '15:28:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.703899',
                      'lng': '-105.020389',
                      'location': 'W EXPOSITION AVE / S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '120226',
                      'time': '12:04:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.704704',
                      'lng': '-105.04202',
                      'location': 'MORRISON RD / S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '120888',
                      'time': '10:23:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.704949',
                      'lng': '-105.043187',
                      'location': 'S STUART ST / W GILL PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '121056',
                      'time': '00:15:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.704949',
                      'lng': '-105.043187',
                      'location': 'S STUART ST / W GILL PL',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '121063',
                      'time': '23:15:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.704928',
                      'lng': '-105.029806',
                      'location': 'S IRVING ST / W GILL PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '121123',
                      'time': '16:52:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.704928',
                      'lng': '-105.029806',
                      'location': 'S IRVING ST / W GILL PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '121124',
                      'time': '23:31:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.704704',
                      'lng': '-105.04202',
                      'location': 'MORRISON RD / S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '121624',
                      'time': '22:27:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.704977',
                      'lng': '-105.046061',
                      'location': 'W GILL PL / S UTICA ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '121682',
                      'time': '23:31:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.704704',
                      'lng': '-105.04202',
                      'location': 'MORRISON RD / S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '121737',
                      'time': '23:18:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.704913',
                      'lng': '-105.025099',
                      'location': 'S FEDERAL BLVD / W GILL PL',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '121764',
                      'time': '11:35:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.704317',
                      'lng': '-105.046058',
                      'location': 'S UTICA ST / W EXPOSITION AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '122000',
                      'time': '19:20:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.704704',
                      'lng': '-105.04202',
                      'location': 'MORRISON RD / S RALEIGH ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '122073',
                      'time': '00:26:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.704797',
                      'lng': '-105.010985',
                      'location': 'W GILL PL / S TEJON ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '122911',
                      'time': '19:19:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.704931',
                      'lng': '-105.031586',
                      'location': '3400-BLK W GILL PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '122941',
                      'time': '20:12:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.704928',
                      'lng': '-105.029806',
                      'location': 'W GILL PL / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '122947',
                      'time': '19:17:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.705639',
                      'lng': '-105.038125',
                      'location': 'S OSCEOLA ST / W CENTER AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '123187',
                      'time': '23:44:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.705768',
                      'lng': '-105.006221',
                      'location': '1600 W CENTER AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '123359',
                      'time': '16:50:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.705404',
                      'lng': '-105.041027',
                      'location': '4114 MORRISON RD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '123597',
                      'time': '01:49:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.705711',
                      'lng': '-105.016913',
                      'location': '600-BLK-ZUNI S ALCOTT ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '123756',
                      'time': '16:34:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.705651',
                      'lng': '-105.039114',
                      'location': 'S PATTON CT / W CENTER AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '123816',
                      'time': '01:31:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.705694',
                      'lng': '-105.025102',
                      'location': 'W CENTER AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '123886',
                      'time': '06:54:16',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.705694',
                      'lng': '-105.025102',
                      'location': 'S FEDERAL BLVD / W CENTER AVE',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '123968',
                      'time': '01:37:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.705694',
                      'lng': '-105.025102',
                      'location': 'S FEDERAL BLVD / W CENTER AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '124059',
                      'time': '00:12:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.705769',
                      'lng': '-105.001516',
                      'location': '600 S LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '124148',
                      'time': '11:01:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.705521',
                      'lng': '-105.040862',
                      'location': 'MORRISON RD / S QUITMAN ST',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '124404',
                      'time': '23:18:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.705833',
                      'lng': '-105.029805',
                      'location': 'S IRVING ST / W CENTER AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '124571',
                      'time': '17:36:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.705694',
                      'lng': '-105.025102',
                      'location': '600 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '124620',
                      'time': '21:31:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.705521',
                      'lng': '-105.040862',
                      'location': '4100-BLK MORRISON RD',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '124874',
                      'time': '22:58:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.704875',
                      'lng': '-105.001502',
                      'location': '1200-BLK W GILL PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '124938',
                      'time': '21:19:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.705746',
                      'lng': '-105.043186',
                      'location': '4300-BLK W CENTER AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '125085',
                      'time': '22:11:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.705746',
                      'lng': '-105.043186',
                      'location': '600 S STUART ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '125092',
                      'time': '21:47:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.705833',
                      'lng': '-105.029805',
                      'location': 'S IRVING ST / W CENTER AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '125209',
                      'time': '20:26:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Y - Broadcast',
                      'district': '4',
                      'lat': '39.705697',
                      'lng': '-105.023858',
                      'location': '600-BLK-FED S ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '125290',
                      'time': '07:52:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.705521',
                      'lng': '-105.040862',
                      'location': 'MORRISON RD / S QUITMAN ST',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '125495',
                      'time': '00:55:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.70634',
                      'lng': '-105.039691',
                      'location': 'MORRISON RD / S PERRY ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '125682',
                      'time': '23:24:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.70634',
                      'lng': '-105.039691',
                      'location': 'MORRISON RD / S PERRY ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '125730',
                      'time': '22:11:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.706543',
                      'lng': '-105.043191',
                      'location': 'S STUART ST / W CUSTER PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '126393',
                      'time': '21:46:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.706746',
                      'lng': '-105.039114',
                      'location': 'S PATTON CT / MORRISON RD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '126456',
                      'time': '23:08:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.706567',
                      'lng': '-105.046236',
                      'location': '4520 W CUSTER PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '126552',
                      'time': '21:10:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.70634',
                      'lng': '-105.039691',
                      'location': 'MORRISON RD / S PERRY ST',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '126948',
                      'time': '21:46:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.70624',
                      'lng': '-105.010988',
                      'location': 'S TEJON ST / W CENTER AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '127012',
                      'time': '21:50:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.706739',
                      'lng': '-105.029811',
                      'location': 'W CUSTER PL / S IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '127019',
                      'time': '21:35:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.707361',
                      'lng': '-105.046056',
                      'location': 'S UTICA ST / W BINGHAM PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '127511',
                      'time': '23:05:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.70634',
                      'lng': '-105.039691',
                      'location': 'MORRISON RD / S PERRY ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '127602',
                      'time': '17:08:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.707189',
                      'lng': '-105.036205',
                      'location': 'S MEADE ST / W CUSTER PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '127964',
                      'time': '22:05:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.707353',
                      'lng': '-105.015696',
                      'location': 'W VIRGINIA AVE / S ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128108',
                      'time': '01:16:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.707591',
                      'lng': '-105.025085',
                      'location': 'W VIRGINIA AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128248',
                      'time': '12:26:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.707591',
                      'lng': '-105.025085',
                      'location': 'S FEDERAL BLVD / W VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128255',
                      'time': '22:37:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.707591',
                      'lng': '-105.025085',
                      'location': 'S FEDERAL BLVD / W VIRGINIA AVE',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '128258',
                      'time': '23:13:01',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.70653',
                      'lng': '-105.011108',
                      'location': '2010 W CUSTER PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128292',
                      'time': '08:53:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.707665',
                      'lng': '-105.028306',
                      'location': '3200-BLK W VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128348',
                      'time': '14:33:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.707665',
                      'lng': '-105.028306',
                      'location': '3200-BLK W VIRGINIA AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '128351',
                      'time': '14:33:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Vehicle Towed',
                      'district': '4',
                      'lat': '39.707683',
                      'lng': '-105.032446',
                      'location': 'S KNOX CT / W VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128404',
                      'time': '12:05:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.707591',
                      'lng': '-105.025085',
                      'location': 'W VIRGINIA AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '128422',
                      'time': '16:31:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.707591',
                      'lng': '-105.025085',
                      'location': 'W VIRGINIA AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128726',
                      'time': '22:41:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.705987',
                      'lng': '-105.008915',
                      'location': '1840 W CENTER AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '128765',
                      'time': '16:21:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.707525',
                      'lng': '-105.018068',
                      'location': 'W VIRGINIA AVE / S BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128815',
                      'time': '09:16:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.707591',
                      'lng': '-105.025085',
                      'location': 'S FEDERAL BLVD / W VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128838',
                      'time': '17:00:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.707591',
                      'lng': '-105.025085',
                      'location': 'S FEDERAL BLVD / W VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128846',
                      'time': '17:27:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.707591',
                      'lng': '-105.025085',
                      'location': 'S FEDERAL BLVD / W VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '128849',
                      'time': '17:04:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.707591',
                      'lng': '-105.025085',
                      'location': 'S FEDERAL BLVD / W VIRGINIA AVE',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '128924',
                      'time': '22:26:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.707666',
                      'lng': '-105.03504',
                      'location': 'W VIRGINIA AVE / S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '129093',
                      'time': '12:03:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.707697',
                      'lng': '-105.050867',
                      'location': '500-BLK S YATES ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '129514',
                      'time': '16:49:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.707571',
                      'lng': '-105.006236',
                      'location': 'W VIRGINIA AVE / S PECOS ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '129577',
                      'time': '23:09:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.707682',
                      'lng': '-105.032304',
                      'location': '3440 W VIRGINIA AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '129770',
                      'time': '16:49:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.707393',
                      'lng': '-105.010991',
                      'location': 'S TEJON ST / W VIRGINIA AVE',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '130168',
                      'time': '21:54:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.707661',
                      'lng': '-105.027539',
                      'location': 'W VIRGINIA AVE / S HAZEL CT',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '130205',
                      'time': '21:57:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.707393',
                      'lng': '-105.010991',
                      'location': 'W VIRGINIA AVE / S TEJON ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '130307',
                      'time': '03:53:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.708544',
                      'lng': '-105.027541',
                      'location': 'S HAZEL CT / W ALASKA PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '130895',
                      'time': '16:57:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.707514',
                      'lng': '-105.022704',
                      'location': 'W VIRGINIA AVE / S DECATUR ST',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '131275',
                      'time': '22:05:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.707979',
                      'lng': '-105.037373',
                      'location': 'MORRISON RD / W VIRGINIA AVE',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '131352',
                      'time': '01:55:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.708039',
                      'lng': '-105.040867',
                      'location': '500 S QUITMAN ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '131392',
                      'time': '21:52:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.708462',
                      'lng': '-105.008631',
                      'location': '1500-BLK W ALASKA PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '131441',
                      'time': '08:23:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.708556',
                      'lng': '-105.031589',
                      'location': '3400 W ALASKA PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '131563',
                      'time': '00:24:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.708178',
                      'lng': '-105.048588',
                      'location': 'W VIRGINIA AVE / S WOLFF ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '131992',
                      'time': '20:40:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.708551',
                      'lng': '-105.029815',
                      'location': 'W ALASKA PL / S IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '132260',
                      'time': '16:51:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.708798',
                      'lng': '-105.036213',
                      'location': 'MORRISON RD / S MEADE ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '132363',
                      'time': '22:37:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.707959',
                      'lng': '-105.025087',
                      'location': '472 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '132461',
                      'time': '03:28:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Vehicle Towed',
                      'district': '4',
                      'lat': '39.708187',
                      'lng': '-105.001505',
                      'location': '460 S LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '132753',
                      'time': '05:32:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.708187',
                      'lng': '-105.001505',
                      'location': '460 S LIPAN ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '132755',
                      'time': '05:36:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.708532',
                      'lng': '-105.025089',
                      'location': 'S FEDERAL BLVD / W ALASKA PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '132830',
                      'time': '00:06:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.708798',
                      'lng': '-105.036213',
                      'location': 'MORRISON RD / S MEADE ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '132860',
                      'time': '22:49:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.709933',
                      'lng': '-105.036214',
                      'location': '376 S MEADE ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '134027',
                      'time': '04:44:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.709612',
                      'lng': '-105.035044',
                      'location': 'MORRISON RD / S LOWELL BLVD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '134315',
                      'time': '09:03:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.709612',
                      'lng': '-105.035044',
                      'location': 'MORRISON RD / S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '134325',
                      'time': '12:09:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.709612',
                      'lng': '-105.035044',
                      'location': 'S LOWELL BLVD / MORRISON RD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '134851',
                      'time': '15:29:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.710811',
                      'lng': '-105.034884',
                      'location': '325 S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '135488',
                      'time': '00:44:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.709335',
                      'lng': '-105.018072',
                      'location': '400 S BRYANT ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '136180',
                      'time': '03:05:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.709329',
                      'lng': '-105.02039',
                      'location': 'W DAKOTA AVE / S CLAY ST',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '136272',
                      'time': '00:10:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.709612',
                      'lng': '-105.035044',
                      'location': 'S LOWELL BLVD / MORRISON RD',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '136560',
                      'time': '10:33:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.70942',
                      'lng': '-105.027537',
                      'location': 'W DAKOTA AVE / S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '136688',
                      'time': '14:28:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.710332',
                      'lng': '-105.034018',
                      'location': '3331 MORRISON RD',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '137054',
                      'time': '00:34:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.710469',
                      'lng': '-105.034997',
                      'location': 'W NEVADA PL / S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '137261',
                      'time': '23:52:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.710332',
                      'lng': '-105.034018',
                      'location': 'MORRISON RD / W NEVADA PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '137281',
                      'time': '14:38:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.710469',
                      'lng': '-105.034997',
                      'location': 'S LOWELL BLVD / W NEVADA PL',
                      'outcome': 'citation',
                      'precinct': '412',
                      'raw_row_number': '137301',
                      'time': '02:04:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.710332',
                      'lng': '-105.034018',
                      'location': 'MORRISON RD / W NEVADA PL',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '137320',
                      'time': '23:29:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.70942',
                      'lng': '-105.027537',
                      'location': '400 S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '137350',
                      'time': '23:58:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.71049',
                      'lng': '-105.039717',
                      'location': 'W NEVADA PL / S PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '137469',
                      'time': '22:02:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.710332',
                      'lng': '-105.034018',
                      'location': 'MORRISON RD / W NEVADA PL',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '137516',
                      'time': '22:42:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.71049',
                      'lng': '-105.039717',
                      'location': 'S PERRY ST / W NEVADA PL',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '137996',
                      'time': '23:24:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.70893',
                      'lng': '-105.043201',
                      'location': '4300 W ALASKA PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '138812',
                      'time': '03:42:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.709459',
                      'lng': '-105.038543',
                      'location': '400 S OSCEOLA ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '139040',
                      'time': '00:56:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.70941',
                      'lng': '-105.025091',
                      'location': '400 S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '139212',
                      'time': '00:57:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.709609',
                      'lng': '-105.053258',
                      'location': 'S SHERIDAN BLVD / W DAKOTA AVE',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '139443',
                      'time': '01:35:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.710274',
                      'lng': '-105.025092',
                      'location': '350 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '139740',
                      'time': '03:44:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.710476',
                      'lng': '-105.036081',
                      'location': 'W NEVADA PL / S MEADE ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '139929',
                      'time': '02:35:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.710576',
                      'lng': '-105.048598',
                      'location': 'W NEVADA PL / S WOLFF ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '141745',
                      'time': '01:43:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.70941',
                      'lng': '-105.025091',
                      'location': '3000-BLK W DAKOTA AVE',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '141802',
                      'time': '23:42:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.710307',
                      'lng': '-105.029812',
                      'location': 'W NEVADA PL / S IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '412',
                      'raw_row_number': '142461',
                      'time': '10:37:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.710307',
                      'lng': '-105.029812',
                      'location': 'S IRVING ST / W NEVADA PL',
                      'outcome': 'warning',
                      'precinct': '412',
                      'raw_row_number': '142518',
                      'time': '23:19:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.710242',
                      'lng': '-105.006262',
                      'location': 'S PECOS ST / W NEVADA PL',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '142619',
                      'time': '03:41:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.710307',
                      'lng': '-105.029812',
                      'location': 'W NEVADA PL / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '412',
                      'raw_row_number': '143048',
                      'time': '00:25:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '421': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.667713',
                      'lng': '-105.040683',
                      'location': 'W YALE AVE / S QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '20243',
                      'time': '15:45:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.667713',
                      'lng': '-105.040683',
                      'location': 'W YALE AVE / S QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '20255',
                      'time': '22:37:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.667778',
                      'lng': '-105.051782',
                      'location': 'W YALE AVE / S ZURICH CT',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '20537',
                      'time': '19:14:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.667778',
                      'lng': '-105.051782',
                      'location': '2700 S ZURICH CT',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '20538',
                      'time': '00:42:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.667733',
                      'lng': '-105.026045',
                      'location': 'W YALE AVE / S GREEN CT',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '20683',
                      'time': '15:23:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.667733',
                      'lng': '-105.026045',
                      'location': 'W YALE AVE / S GREEN CT',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '20685',
                      'time': '17:44:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.667742',
                      'lng': '-105.045826',
                      'location': 'W YALE AVE / S VRAIN ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '21111',
                      'time': '19:05:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.667702',
                      'lng': '-105.038686',
                      'location': 'W YALE AVE / S PATTON CT',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '22007',
                      'time': '19:15:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.670325',
                      'lng': '-105.034943',
                      'location': 'S LOWELL BLVD / W VASSAR AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '24611',
                      'time': '00:52:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.671196',
                      'lng': '-105.02506',
                      'location': 'S FEDERAL BLVD / W VASSAR AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '24677',
                      'time': '07:11:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.672307000000004',
                      'lng': '-105.03681',
                      'location': 'W HARVARD AVE / S NEWTON ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '24857',
                      'time': '19:32:35',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.670154',
                      'lng': '-105.025077',
                      'location': '2600 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '25184',
                      'time': '00:03:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.672513',
                      'lng': '-105.025077',
                      'location': '2426 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '25622',
                      'time': '22:40:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.672312',
                      'lng': '-105.037727',
                      'location': 'W HARVARD AVE / S OSCEOLA ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '26080',
                      'time': '19:37:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.672318',
                      'lng': '-105.038653',
                      'location': 'W HARVARD AVE / S PATTON CT',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '26206',
                      'time': '23:05:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.671787',
                      'lng': '-105.025062',
                      'location': '2500 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '26757',
                      'time': '02:41:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.671787',
                      'lng': '-105.025062',
                      'location': 'W HARVARD AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '26767',
                      'time': '23:19:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.672415',
                      'lng': '-105.031856',
                      'location': 'S KNOX CT / W HARVARD AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '26844',
                      'time': '22:10:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.67334',
                      'lng': '-105.025073',
                      'location': 'W HARVARD AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '27097',
                      'time': '22:23:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.67334',
                      'lng': '-105.025073',
                      'location': 'W WESLEY AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '27171',
                      'time': '15:14:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.67334',
                      'lng': '-105.025073',
                      'location': 'S FEDERAL BLVD / W HARVARD AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '27691',
                      'time': '20:52:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.6743',
                      'lng': '-105.053234',
                      'location': 'W Iliff Dr / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '27720',
                      'time': '00:19:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.6743',
                      'lng': '-105.053234',
                      'location': 'W Iliff Dr / S SHERIDAN BLVD',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '27723',
                      'time': '00:29:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.6743',
                      'lng': '-105.053234',
                      'location': 'S SHERIDAN BLVD / W HARVARD AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '27734',
                      'time': '17:59:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.6743',
                      'lng': '-105.053234',
                      'location': 'S SHERIDAN BLVD / W HARVARD AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '27736',
                      'time': '23:56:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.6743',
                      'lng': '-105.053234',
                      'location': 'W HARVARD AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '27739',
                      'time': '00:59:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.6743',
                      'lng': '-105.053234',
                      'location': 'W HARVARD AVE / S SHERIDAN BLVD',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '27740',
                      'time': '23:42:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.674218',
                      'lng': '-105.02507',
                      'location': '2350 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '27917',
                      'time': '02:24:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'File Only',
                      'district': '4',
                      'lat': '39.674483',
                      'lng': '-105.040658',
                      'location': '2340 S QUITMAN ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '27941',
                      'time': '09:21:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.673915',
                      'lng': '-105.045861',
                      'location': 'W HARVARD AVE / S VRAIN ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '28043',
                      'time': '22:41:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.67334',
                      'lng': '-105.025073',
                      'location': 'W HARVARD AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '28301',
                      'time': '07:44:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.673377',
                      'lng': '-105.025073',
                      'location': '2396 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '28424',
                      'time': '07:17:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.673377',
                      'lng': '-105.025073',
                      'location': '2396 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '28440',
                      'time': '20:40:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.673377',
                      'lng': '-105.025073',
                      'location': '2396 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '28441',
                      'time': '11:34:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.674967',
                      'lng': '-105.025067',
                      'location': '2309 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '28493',
                      'time': '20:26:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.67495',
                      'lng': '-105.034903',
                      'location': 'S LOWELL BLVD / W ILIFF AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '28642',
                      'time': '19:19:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.67334',
                      'lng': '-105.025073',
                      'location': 'W HARVARD AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '29008',
                      'time': '04:55:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.673468',
                      'lng': '-105.043804',
                      'location': 'S TENNYSON ST / W HARVARD AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '29059',
                      'time': '10:20:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.67473',
                      'lng': '-105.025068',
                      'location': '2322 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '29199',
                      'time': '14:12:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.67334',
                      'lng': '-105.025073',
                      'location': 'W HARVARD AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '29450',
                      'time': '14:25:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.6743',
                      'lng': '-105.053234',
                      'location': 'S SHERIDAN BLVD / W Iliff Dr',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '29618',
                      'time': '19:43:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.674284',
                      'lng': '-105.048956',
                      'location': 'W HARVARD AVE / S XAVIER ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '29745',
                      'time': '00:51:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.675925',
                      'lng': '-105.042761',
                      'location': '2245 S STUART ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '30002',
                      'time': '23:21:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.675674',
                      'lng': '-105.053267',
                      'location': 'W WARREN AVE / S SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '30569',
                      'time': '18:13:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.676766',
                      'lng': '-105.025044',
                      'location': '2200 S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '30679',
                      'time': '03:02:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.675423',
                      'lng': '-105.057257',
                      'location': 'W WARREN AVE / S DEPEW ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '31071',
                      'time': '23:01:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.675668',
                      'lng': '-105.053267',
                      'location': '2201 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '31137',
                      'time': '14:21:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.675668',
                      'lng': '-105.053267',
                      'location': '2201 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '31159',
                      'time': '07:39:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.675674',
                      'lng': '-105.053267',
                      'location': 'W WARREN AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '31197',
                      'time': '14:47:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.676766',
                      'lng': '-105.025044',
                      'location': '2200 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '31292',
                      'time': '01:31:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.676766',
                      'lng': '-105.025044',
                      'location': 'S FEDERAL BLVD / W WARREN AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '31302',
                      'time': '18:41:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.675587',
                      'lng': '-105.053265',
                      'location': '2215 S SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '31630',
                      'time': '22:50:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.675423',
                      'lng': '-105.057257',
                      'location': 'S DEPEW ST / W WARREN AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '31679',
                      'time': '22:28:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.675318',
                      'lng': '-105.028828',
                      'location': '2300-BLK S HOOKER WAY',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '31693',
                      'time': '16:17:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.677301',
                      'lng': '-105.025048',
                      'location': '2170 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '32242',
                      'time': '19:09:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.677301',
                      'lng': '-105.025048',
                      'location': '2170 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '32243',
                      'time': '15:11:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.678232',
                      'lng': '-105.053265',
                      'location': 'W HARVEY PL / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '32448',
                      'time': '00:23:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.678248',
                      'lng': '-105.028802',
                      'location': 'W EVANS AVE / S HOOKER WAY',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '32456',
                      'time': '00:16:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.676768',
                      'lng': '-105.028815',
                      'location': '2200-BLK S HOOKER WAY',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '32498',
                      'time': '14:43:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.678255',
                      'lng': '-105.025055',
                      'location': '2120 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '33717',
                      'time': '07:56:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.678255',
                      'lng': '-105.025055',
                      'location': '2120 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '33720',
                      'time': '15:26:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.67851',
                      'lng': '-105.053265',
                      'location': '2121 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '33890',
                      'time': '01:36:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.676766',
                      'lng': '-105.025044',
                      'location': '2200-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '34301',
                      'time': '12:37:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.676766',
                      'lng': '-105.025044',
                      'location': 'W WARREN AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '34446',
                      'time': '13:03:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.678625',
                      'lng': '-105.02753',
                      'location': 'W EVANS AVE / S HAZEL CT',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '34582',
                      'time': '10:01:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.678637',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '34696',
                      'time': '08:18:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678637',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '34770',
                      'time': '19:48:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.678637',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '34771',
                      'time': '21:35:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.678637',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W EVANS AVE',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '34772',
                      'time': '22:14:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.678637',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '34867',
                      'time': '02:13:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678637',
                      'lng': '-105.025058',
                      'location': 'W EVANS AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '34879',
                      'time': '15:24:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.678637',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '35542',
                      'time': '17:17:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.678637',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '36119',
                      'time': '22:22:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.678625',
                      'lng': '-105.02753',
                      'location': 'S HAZEL CT / W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '36425',
                      'time': '22:07:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.678596',
                      'lng': '-105.034375',
                      'location': 'W EVANS AVE / S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '36497',
                      'time': '01:44:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678637',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '36603',
                      'time': '22:13:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.678573',
                      'lng': '-105.032117',
                      'location': 'S KNOX CT / W EVANS AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '36881',
                      'time': '23:11:59',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.679159',
                      'lng': '-105.057243',
                      'location': '2100-BLK S DEPEW ST',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '44399',
                      'time': '18:12:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.679159',
                      'lng': '-105.053264',
                      'location': 'S SHERIDAN BLVD / W EVANS AVE',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '45189',
                      'time': '15:27:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.679159',
                      'lng': '-105.053264',
                      'location': 'W EVANS AVE / S SHERIDAN BLVD',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '45212',
                      'time': '22:47:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.679159',
                      'lng': '-105.053264',
                      'location': 'W EVANS AVE / S SHERIDAN BLVD',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '45329',
                      'time': '23:35:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.679159',
                      'lng': '-105.057243',
                      'location': 'W EVANS AVE / S DEPEW ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '45468',
                      'time': '22:20:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '4',
                      'lat': '39.679159',
                      'lng': '-105.057243',
                      'location': '2100-BLK S DEPEW ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '45469',
                      'time': '15:19:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.679159',
                      'lng': '-105.053264',
                      'location': 'S SHERIDAN BLVD / W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '45670',
                      'time': '22:58:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.679828',
                      'lng': '-105.042274',
                      'location': '4200 W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '45783',
                      'time': '23:41:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.679828',
                      'lng': '-105.042274',
                      'location': 'W EVANS AVE / S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '45797',
                      'time': '01:47:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.679161',
                      'lng': '-105.050023',
                      'location': 'W EVANS AVE / S XAVIER ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '45814',
                      'time': '00:10:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.679578',
                      'lng': '-105.044094',
                      'location': '2100 S TENNYSON WAY',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '46397',
                      'time': '00:48:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.67943',
                      'lng': '-105.027526',
                      'location': '2100 S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '46499',
                      'time': '13:18:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.679159',
                      'lng': '-105.053264',
                      'location': 'W EVANS AVE / S SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '47021',
                      'time': '02:03:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.679159',
                      'lng': '-105.053264',
                      'location': 'W EVANS AVE / S SHERIDAN BLVD',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '47040',
                      'time': '17:52:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.680236',
                      'lng': '-105.027522',
                      'location': '2000 S HAZEL CT',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '47214',
                      'time': '14:46:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.681017',
                      'lng': '-105.04226800000001',
                      'location': '2000-BLK S RALEIGH ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '49088',
                      'time': '07:32:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.050025',
                      'location': 'W JEWELL AVE / S XAVIER ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '49113',
                      'time': '17:21:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.050025',
                      'location': '1900-BLK S XAVIER ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '49114',
                      'time': '22:37:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.682224',
                      'lng': '-105.032087',
                      'location': 'W JEWELL AVE / S KNOX CT',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '49366',
                      'time': '22:38:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.682262',
                      'lng': '-105.026214',
                      'location': 'W JEWELL AVE / S GROVE ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '49475',
                      'time': '22:04:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.682181',
                      'lng': '-105.025038',
                      'location': '1905 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '49953',
                      'time': '15:23:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.682262',
                      'lng': '-105.026214',
                      'location': 'S GROVE ST / W JEWELL AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '49973',
                      'time': '01:34:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.682232',
                      'lng': '-105.030954',
                      'location': '3400 W JEWELL AVE',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '49999',
                      'time': '00:07:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.68224',
                      'lng': '-105.029789',
                      'location': 'W JEWELL AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '50371',
                      'time': '02:07:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.682214',
                      'lng': '-105.038276',
                      'location': 'W JEWELL AVE / S PATTON CT',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '50448',
                      'time': '07:27:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.682256',
                      'lng': '-105.027371',
                      'location': 'W JEWELL AVE / S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '50551',
                      'time': '22:17:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.682256',
                      'lng': '-105.027371',
                      'location': 'W JEWELL AVE / S HAZEL CT',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '50554',
                      'time': '01:01:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.682292',
                      'lng': '-105.053221',
                      'location': 'S SHERIDAN BLVD / W JEWELL AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '50603',
                      'time': '05:49:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.680635',
                      'lng': '-105.025031',
                      'location': '1991 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '50777',
                      'time': '05:11:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': 'W JEWELL AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '50890',
                      'time': '10:57:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.680653',
                      'lng': '-105.025031',
                      'location': '1990 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '50909',
                      'time': '15:19:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.680887',
                      'lng': '-105.025032',
                      'location': '1977 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '50958',
                      'time': '21:01:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.682292',
                      'lng': '-105.053221',
                      'location': 'S SHERIDAN BLVD / W JEWELL AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '51090',
                      'time': '06:17:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.682262',
                      'lng': '-105.026214',
                      'location': 'W JEWELL AVE / S GROVE ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '51217',
                      'time': '14:29:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.682292',
                      'lng': '-105.053221',
                      'location': 'W JEWELL AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '51224',
                      'time': '08:16:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.682292',
                      'lng': '-105.053221',
                      'location': 'S SHERIDAN BLVD / W JEWELL AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '51237',
                      'time': '00:25:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': '1900-BLK S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '51298',
                      'time': '19:54:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': '1900 S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '51394',
                      'time': '05:19:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': '3000 W JEWELL AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '51497',
                      'time': '07:45:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': '1900 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '51583',
                      'time': '15:00:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.68225',
                      'lng': '-105.028321',
                      'location': 'S HOOKER ST / W JEWELL AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '51940',
                      'time': '03:29:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': 'W JEWELL AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '51967',
                      'time': '15:25:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': '1900-BLK S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '52109',
                      'time': '23:29:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.682511',
                      'lng': '-105.025039',
                      'location': '1885 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '52622',
                      'time': '00:53:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': 'W JEWELL AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '53407',
                      'time': '01:11:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': '1900-BLK S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '53944',
                      'time': '22:25:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.682271',
                      'lng': '-105.025038',
                      'location': '1900-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '53970',
                      'time': '05:25:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.684439',
                      'lng': '-105.041029',
                      'location': '1700 S RALEIGH ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '54546',
                      'time': '22:21:47',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed,T -',
                      'district': '4',
                      'lat': '39.683892',
                      'lng': '-105.050039',
                      'location': 'S XAVIER ST / W COLORADO AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '54893',
                      'time': '22:31:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.68404',
                      'lng': '-105.047065',
                      'location': 'S WINONA CT / W COLORADO AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '55430',
                      'time': '00:24:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.684144',
                      'lng': '-105.036101',
                      'location': '1825 S MICHIGAN WAY',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '55486',
                      'time': '08:19:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.684021',
                      'lng': '-105.029791',
                      'location': 'S IRVING ST / W BAILS PL',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '55560',
                      'time': '07:59:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.684021',
                      'lng': '-105.029791',
                      'location': 'W BAILS PL / S IRVING ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '55562',
                      'time': '08:12:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.684607',
                      'lng': '-105.033226',
                      'location': '3500-BLK W COLORADO AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '55638',
                      'time': '07:59:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.684544',
                      'lng': '-105.029789',
                      'location': '1821 S IRVING ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '55975',
                      'time': '10:11:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.684021',
                      'lng': '-105.029791',
                      'location': 'S IRVING ST / W BAILS PL',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '56064',
                      'time': '23:23:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Vehicle Towed',
                      'district': '4',
                      'lat': '39.683517',
                      'lng': '-105.032723',
                      'location': '1800 S KING WAY',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '56077',
                      'time': '11:07:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.684024',
                      'lng': '-105.028322',
                      'location': 'W BAILS PL / S HOOKER ST',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '56207',
                      'time': '20:42:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.683392',
                      'lng': '-105.053196',
                      'location': 'S SHERIDAN BLVD / W COLORADO AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '56528',
                      'time': '15:03:16',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.684972',
                      'lng': '-105.025044',
                      'location': '1750 S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '56547',
                      'time': '08:49:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.68368',
                      'lng': '-105.026212',
                      'location': '1820 S GROVE ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '56750',
                      'time': '02:42:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.684951',
                      'lng': '-105.029788',
                      'location': '1800 S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '58185',
                      'time': '23:44:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.684951',
                      'lng': '-105.029788',
                      'location': 'W COLORADO AVE / S IRVING ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '58320',
                      'time': '09:59:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.684951',
                      'lng': '-105.029788',
                      'location': '1800-BLK S IRVING ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '58328',
                      'time': '07:36:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.685376',
                      'lng': '-105.03438',
                      'location': 'W MEXICO AVE / S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '58406',
                      'time': '23:00:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.684951',
                      'lng': '-105.029788',
                      'location': '1800 S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '58809',
                      'time': '08:21:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.685856',
                      'lng': '-105.029782',
                      'location': 'W MEXICO AVE / S IRVING ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '59545',
                      'time': '12:35:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.686',
                      'lng': '-105.053194',
                      'location': 'S SHERIDAN BLVD / W OREGON PL',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '60291',
                      'time': '22:34:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.685864',
                      'lng': '-105.028134',
                      'location': '3196 W MEXICO AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '60803',
                      'time': '20:02:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'None',
                      'district': '4',
                      'lat': '39.68587',
                      'lng': '-105.02712',
                      'location': '3131 W MEXICO AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '61448',
                      'time': '23:12:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.686469',
                      'lng': '-105.029787',
                      'location': 'S IRVING ST / S JAVA WAY',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '61497',
                      'time': '09:05:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.687352',
                      'lng': '-105.050035',
                      'location': '1600-BLK S XAVIER ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '63620',
                      'time': '15:01:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.687274',
                      'lng': '-105.025052',
                      'location': '1624 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '63624',
                      'time': '15:44:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.688179',
                      'lng': '-105.047979',
                      'location': '1600 S WOLFF ST',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '65683',
                      'time': '19:52:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.689496',
                      'lng': '-105.044262',
                      'location': 'W FLORIDA AVE / S TENNYSON ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '66570',
                      'time': '03:27:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': '1500 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '66876',
                      'time': '23:57:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.689522',
                      'lng': '-105.048008',
                      'location': 'S WOLFF ST / W FLORIDA AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '67095',
                      'time': '05:39:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.689543',
                      'lng': '-105.052094',
                      'location': 'S ZENOBIA ST / W FLORIDA AVE',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '67161',
                      'time': '23:17:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.689458',
                      'lng': '-105.029706',
                      'location': 'W FLORIDA AVE / S IRVING ST',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '67327',
                      'time': '23:19:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Evidence / Property',
                      'district': '4',
                      'lat': '39.689469',
                      'lng': '-105.027394',
                      'location': '1500 S HAZEL CT',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '67574',
                      'time': '02:41:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': 'W FLORIDA AVE / S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '67620',
                      'time': '16:52:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': '1500 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '67621',
                      'time': '00:54:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.689451',
                      'lng': '-105.035532',
                      'location': 'W FLORIDA AVE / S MEADE ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '67773',
                      'time': '00:29:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.689483',
                      'lng': '-105.04242',
                      'location': '4225 W FLORIDA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '67814',
                      'time': '05:57:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.689485',
                      'lng': '-105.042778',
                      'location': '4259 W FLORIDA AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '67820',
                      'time': '18:07:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Detox Van',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W FLORIDA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '67943',
                      'time': '15:41:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.689458',
                      'lng': '-105.029706',
                      'location': 'W FLORIDA AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '68002',
                      'time': '21:00:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': '1499 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '68187',
                      'time': '22:10:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.689375',
                      'lng': '-105.025058',
                      'location': '1506 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '68328',
                      'time': '16:47:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.689394',
                      'lng': '-105.025058',
                      'location': '1505 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '68355',
                      'time': '11:08:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.689462',
                      'lng': '-105.037867',
                      'location': 'W FLORIDA AVE / S OSCEOLA WAY',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '68412',
                      'time': '10:06:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.689471',
                      'lng': '-105.040048',
                      'location': '1500 S PERRY ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '68434',
                      'time': '03:14:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.689432',
                      'lng': '-105.033417',
                      'location': 'W FLORIDA AVE / S KING ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '68717',
                      'time': '05:46:07',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.689434',
                      'lng': '-105.032501',
                      'location': 'W FLORIDA AVE / S KNOX CT',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '68872',
                      'time': '02:23:32',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': '1499 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '68893',
                      'time': '03:58:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': '1500-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '70191',
                      'time': '17:06:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': 'S FEDERAL BLVD / W FLORIDA AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '70936',
                      'time': '22:29:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': '1500-GROVE S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '71213',
                      'time': '23:06:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.690949',
                      'lng': '-105.02506',
                      'location': '1435 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '71967',
                      'time': '07:30:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.689486',
                      'lng': '-105.025058',
                      'location': '1499 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '72023',
                      'time': '09:18:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.689914',
                      'lng': '-105.044261',
                      'location': '1475 S TENNYSON ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '72418',
                      'time': '08:32:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.691278',
                      'lng': '-105.044258',
                      'location': 'S TENNYSON ST / W ARKANSAS AVE',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '73039',
                      'time': '20:07:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.691297',
                      'lng': '-105.025062',
                      'location': 'S FEDERAL BLVD / W ARKANSAS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '74017',
                      'time': '15:06:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.691297',
                      'lng': '-105.025062',
                      'location': 'S FEDERAL BLVD / W ARKANSAS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '74062',
                      'time': '22:31:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.691297',
                      'lng': '-105.025062',
                      'location': 'W ARKANSAS AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '74083',
                      'time': '21:59:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.691285',
                      'lng': '-105.029717',
                      'location': 'W ARKANSAS AVE / S IRVING ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '74529',
                      'time': '22:02:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.691282',
                      'lng': '-105.032055',
                      'location': 'S KNOX CT / W ARKANSAS AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '75131',
                      'time': '22:28:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.691285',
                      'lng': '-105.029717',
                      'location': '1400-BLK S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '75154',
                      'time': '16:31:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.691285',
                      'lng': '-105.029717',
                      'location': '1400-BLK S IRVING ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '75170',
                      'time': '20:06:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.691297',
                      'lng': '-105.025062',
                      'location': 'W ARKANSAS AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '75281',
                      'time': '07:21:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.691297',
                      'lng': '-105.025062',
                      'location': 'W ARKANSAS AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '75714',
                      'time': '00:45:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.691285',
                      'lng': '-105.029717',
                      'location': '1400 S IRVING ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '75770',
                      'time': '22:13:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '4',
                      'lat': '39.691297',
                      'lng': '-105.025062',
                      'location': 'S FEDERAL BLVD / W ARKANSAS AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '75900',
                      'time': '23:48:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.691365',
                      'lng': '-105.053194',
                      'location': 'W ARKANSAS AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '76350',
                      'time': '18:04:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.691365',
                      'lng': '-105.053194',
                      'location': 'S SHERIDAN BLVD / W ARKANSAS AVE',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '76358',
                      'time': '21:17:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.693131',
                      'lng': '-105.043737',
                      'location': 'S TENNYSON ST / W LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '76855',
                      'time': '19:02:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.693154',
                      'lng': '-105.048407',
                      'location': 'W LOUISIANA AVE / S WOLFF ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '77480',
                      'time': '22:02:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.693118',
                      'lng': '-105.040225',
                      'location': 'W LOUISIANA AVE / S PERRY ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '77911',
                      'time': '07:26:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.693104',
                      'lng': '-105.028335',
                      'location': '3190 W LOUISIANA AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '78802',
                      'time': '21:48:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.693109',
                      'lng': '-105.025064',
                      'location': '1300 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '79151',
                      'time': '15:52:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.693162',
                      'lng': '-105.050722',
                      'location': 'S YATES ST / W LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '79303',
                      'time': '12:55:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.693109',
                      'lng': '-105.025064',
                      'location': 'S FEDERAL BLVD / W LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '79398',
                      'time': '23:11:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.693109',
                      'lng': '-105.025064',
                      'location': '1300 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '79734',
                      'time': '22:15:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.6931',
                      'lng': '-105.030983',
                      'location': '3400 W LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '79936',
                      'time': '23:30:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.693109',
                      'lng': '-105.025064',
                      'location': 'S FEDERAL BLVD / W LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '80055',
                      'time': '22:09:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.693104',
                      'lng': '-105.028473',
                      'location': 'W LOUISIANA AVE / S HOOKER ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '80626',
                      'time': '19:00:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Y - Broadcast',
                      'district': '4',
                      'lat': '39.693109',
                      'lng': '-105.025064',
                      'location': 'S FEDERAL BLVD / W LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '80705',
                      'time': '04:46:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.693106',
                      'lng': '-105.027302',
                      'location': '3130 W LOUISIANA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '80958',
                      'time': '12:56:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.693106',
                      'lng': '-105.027302',
                      'location': '3130 W LOUISIANA AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '80963',
                      'time': '13:14:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.693109',
                      'lng': '-105.025064',
                      'location': 'W LOUISIANA AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '81027',
                      'time': '23:29:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.693109',
                      'lng': '-105.025064',
                      'location': 'W LOUISIANA AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '81135',
                      'time': '22:37:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Detox Van',
                      'district': '4',
                      'lat': '39.693109',
                      'lng': '-105.025064',
                      'location': 'W LOUISIANA AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '81309',
                      'time': '20:01:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.693469',
                      'lng': '-105.044893',
                      'location': '1280 S UTICA ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '81722',
                      'time': '12:46:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.69351',
                      'lng': '-105.053199',
                      'location': '1280 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '82943',
                      'time': '03:28:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.694918',
                      'lng': '-105.029728',
                      'location': 'S IRVING ST / W ARIZONA AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '84314',
                      'time': '07:56:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.694918',
                      'lng': '-105.029728',
                      'location': 'S IRVING ST / W ARIZONA AVE',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '84332',
                      'time': '07:36:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.694934',
                      'lng': '-105.040231',
                      'location': '1200 S PERRY ST',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '84412',
                      'time': '23:25:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.694918',
                      'lng': '-105.029728',
                      'location': '1200 S IRVING ST',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '84570',
                      'time': '00:28:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.694918',
                      'lng': '-105.029728',
                      'location': 'S IRVING ST / W ARIZONA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '84642',
                      'time': '21:41:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.694919',
                      'lng': '-105.025067',
                      'location': '1200 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '84816',
                      'time': '12:36:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.694912',
                      'lng': '-105.034394',
                      'location': '1200-BLK S LOWELL BLVD',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '85044',
                      'time': '04:34:02',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.694912',
                      'lng': '-105.034394',
                      'location': 'S LOWELL BLVD / W ARIZONA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '85057',
                      'time': '18:47:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.694918',
                      'lng': '-105.026319',
                      'location': 'W ARIZONA AVE / S GROVE ST',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '85212',
                      'time': '23:08:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.694954',
                      'lng': '-105.04605',
                      'location': '1200 S VRAIN ST',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '85649',
                      'time': '23:35:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.694976',
                      'lng': '-105.050719',
                      'location': 'S YATES ST / W ARIZONA AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '85674',
                      'time': '15:36:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.69499',
                      'lng': '-105.053219',
                      'location': '1200-BLK S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '85714',
                      'time': '18:58:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.694919',
                      'lng': '-105.025067',
                      'location': 'S FEDERAL BLVD / W ARIZONA AVE',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '85802',
                      'time': '21:20:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.694919',
                      'lng': '-105.025067',
                      'location': '3000 W ARIZONA AVE',
                      'outcome': 'citation',
                      'precinct': '421',
                      'raw_row_number': '85849',
                      'time': '14:33:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.694919',
                      'lng': '-105.025067',
                      'location': '1200-BLK S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '421',
                      'raw_row_number': '85884',
                      'time': '14:08:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.694918',
                      'lng': '-105.032068',
                      'location': '1200 S KNOX CT',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '85929',
                      'time': '15:01:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.694975',
                      'lng': '-105.025067',
                      'location': '1195 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '86100',
                      'time': '22:45:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.694697',
                      'lng': '-105.025067',
                      'location': '1212 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '86243',
                      'time': '12:32:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.695279',
                      'lng': '-105.042562',
                      'location': '1180 S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '86339',
                      'time': '07:10:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.696081',
                      'lng': '-105.039066',
                      'location': '1135 S PATTON CT',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '86425',
                      'time': '15:56:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.69677',
                      'lng': '-105.053225',
                      'location': '1100-BLK S SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '421',
                      'raw_row_number': '87913',
                      'time': '22:40:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696728',
                      'lng': '-105.025059',
                      'location': '1101 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '421',
                      'raw_row_number': '88754',
                      'time': '10:15:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '422': [{'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.66048',
                      'lng': '-105.025158',
                      'location': '3101 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '12458',
                      'time': '15:31:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.660502',
                      'lng': '-105.025158',
                      'location': 'W DARTMOUTH AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '12497',
                      'time': '19:05:35',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'File Only',
                      'district': '4',
                      'lat': '39.660502',
                      'lng': '-105.025158',
                      'location': 'W DARTMOUTH AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '13111',
                      'time': '00:37:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.660502',
                      'lng': '-105.025158',
                      'location': '3100 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '13152',
                      'time': '15:16:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.660502',
                      'lng': '-105.025158',
                      'location': 'S FEDERAL BLVD / W DARTMOUTH AVE',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '13219',
                      'time': '10:00:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.660502',
                      'lng': '-105.025158',
                      'location': '3100 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '13265',
                      'time': '08:12:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.660502',
                      'lng': '-105.025158',
                      'location': '3100 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '13381',
                      'time': '07:31:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.65743',
                      'lng': '-105.02518',
                      'location': 'S FEDERAL BLVD / W FLOYD AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '13454',
                      'time': '16:52:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.65743',
                      'lng': '-105.02518',
                      'location': '3000 W FLOYD AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '13466',
                      'time': '19:08:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.6605',
                      'lng': '-105.024056',
                      'location': '2900 W DARTMOUTH AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '13722',
                      'time': '10:06:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'File Only',
                      'district': '4',
                      'lat': '39.660497',
                      'lng': '-105.022932',
                      'location': 'W DARTMOUTH AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '13744',
                      'time': '11:33:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.65743',
                      'lng': '-105.02518',
                      'location': 'W FLOYD AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '14060',
                      'time': '05:22:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.660502',
                      'lng': '-105.025158',
                      'location': 'W DARTMOUTH AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '15051',
                      'time': '09:18:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.66212',
                      'lng': '-105.025148',
                      'location': 'S FEDERAL BLVD / W CORNELL AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '15160',
                      'time': '07:28:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.665334',
                      'lng': '-105.02512',
                      'location': '2800 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '15838',
                      'time': '08:02:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.662129',
                      'lng': '-105.020421',
                      'location': '2700 W CORNELL AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '16272',
                      'time': '10:38:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.66213',
                      'lng': '-105.020154',
                      'location': '2689 W CORNELL AVE',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '16273',
                      'time': '20:15:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.665334',
                      'lng': '-105.02512',
                      'location': '2800 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '16456',
                      'time': '07:16:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.66212',
                      'lng': '-105.025148',
                      'location': 'S FEDERAL BLVD / W CORNELL AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '16698',
                      'time': '12:19:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.662122',
                      'lng': '-105.023987',
                      'location': '2900 W CORNELL AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '16858',
                      'time': '21:58:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.665339',
                      'lng': '-105.022779',
                      'location': 'S DECATUR ST / W AMHERST AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '18291',
                      'time': '14:48:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.665339',
                      'lng': '-105.022779',
                      'location': 'W AMHERST AVE / S DECATUR ST',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '18305',
                      'time': '08:39:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.665339',
                      'lng': '-105.022779',
                      'location': 'W AMHERST AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '18312',
                      'time': '09:46:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.665366',
                      'lng': '-105.025119',
                      'location': '2796 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '18927',
                      'time': '03:42:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.667716',
                      'lng': '-105.025108',
                      'location': 'S FEDERAL BLVD / W YALE AVE',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '19856',
                      'time': '23:38:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.667716',
                      'lng': '-105.025108',
                      'location': 'S FEDERAL BLVD / W YALE AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '19858',
                      'time': '02:23:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.667716',
                      'lng': '-105.025108',
                      'location': '3000-W W YALE AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '20021',
                      'time': '13:36:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.666941',
                      'lng': '-105.022773',
                      'location': 'W YALE AVE / S DECATUR ST',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '20205',
                      'time': '08:17:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.667716',
                      'lng': '-105.025108',
                      'location': 'S FEDERAL BLVD / W YALE AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '20508',
                      'time': '16:59:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.666943',
                      'lng': '-105.023954',
                      'location': '2900 W YALE AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '22049',
                      'time': '07:45:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.666943',
                      'lng': '-105.023954',
                      'location': '2900-BLK W YALE AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '22056',
                      'time': '14:31:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.666941',
                      'lng': '-105.022773',
                      'location': 'W YALE AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '22073',
                      'time': '07:30:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.666941',
                      'lng': '-105.022773',
                      'location': 'W YALE AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '22077',
                      'time': '17:26:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.668543',
                      'lng': '-105.025073',
                      'location': 'S FEDERAL BLVD / W COLLEGE AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '22540',
                      'time': '00:56:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.669351',
                      'lng': '-105.022758',
                      'location': 'S DECATUR ST / W WATER AVE',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '24978',
                      'time': '11:29:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.670155',
                      'lng': '-105.023928',
                      'location': '2900 W VASSAR AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '25687',
                      'time': '16:30:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.670155',
                      'lng': '-105.023928',
                      'location': '2900 W VASSAR AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '25689',
                      'time': '05:46:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.671793',
                      'lng': '-105.018182',
                      'location': '2600 W HARVARD AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '26027',
                      'time': '07:53:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.67099',
                      'lng': '-105.022752',
                      'location': 'S DECATUR ST / W HILLSIDE AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '27625',
                      'time': '12:34:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.673399',
                      'lng': '-105.019774',
                      'location': '2711 W WESLEY AVE',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '27840',
                      'time': '15:11:17',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': 'S FEDERAL BLVD / W ILIFF AVE',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '28245',
                      'time': '06:07:03',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': '3000-BLK W ILIFF AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '28246',
                      'time': '08:39:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.674873',
                      'lng': '-105.001773',
                      'location': 'S LIPAN ST / W ILIFF AVE',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '28508',
                      'time': '00:20:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.675015',
                      'lng': '-105.022721',
                      'location': 'W ILIFF AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '29920',
                      'time': '12:09:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.675015',
                      'lng': '-105.022721',
                      'location': 'S DECATUR ST / W ILIFF AVE',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '29921',
                      'time': '14:32:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': 'S FEDERAL BLVD / W ILIFF AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '30106',
                      'time': '03:59:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.675349',
                      'lng': '-105.025063',
                      'location': '2285 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '30510',
                      'time': '09:37:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': 'S FEDERAL BLVD / W ILIFF AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '30747',
                      'time': '20:37:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': 'S FEDERAL BLVD / W ILIFF AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '31721',
                      'time': '22:18:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': '3000-BLK W ILIFF AVE',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '31948',
                      'time': '21:41:03',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': 'W ILIFF AVE / S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '32031',
                      'time': '02:49:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': '2300 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '32657',
                      'time': '23:02:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': 'W ILIFF AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '32661',
                      'time': '01:51:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.675132',
                      'lng': '-105.025066',
                      'location': 'S FEDERAL BLVD / W ILIFF AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '32664',
                      'time': '20:42:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.676788',
                      'lng': '-105.020382',
                      'location': 'S CLAY ST / W WARREN AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '34202',
                      'time': '14:01:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678564',
                      'lng': '-105.005254',
                      'location': 'W EVANS AVE / S OSAGE ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '36217',
                      'time': '02:39:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.678478',
                      'lng': '-104.998513',
                      'location': 'S PLATTE RIVER DR / W EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '36371',
                      'time': '07:14:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'File Only',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': '2100 S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '37175',
                      'time': '17:27:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': '2100 S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '37177',
                      'time': '00:29:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': '2100 S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '37320',
                      'time': '10:27:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': 'W EVANS AVE / S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '37367',
                      'time': '01:16:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.678652',
                      'lng': '-105.021942',
                      'location': '2800 W EVANS AVE',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '37514',
                      'time': '00:54:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': 'W EVANS AVE / S CLAY ST',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '37790',
                      'time': '23:54:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Detox Van',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': 'W EVANS AVE / S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '37873',
                      'time': '19:01:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': '2100 S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '37905',
                      'time': '18:21:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678589',
                      'lng': '-105.00642',
                      'location': '1601 W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '38101',
                      'time': '15:13:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': '2100 S CLAY ST',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '38174',
                      'time': '02:33:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.678628',
                      'lng': '-105.008664',
                      'location': 'W EVANS AVE / S RARITAN ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '38469',
                      'time': '02:30:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': 'S CLAY ST / W EVANS AVE',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '38504',
                      'time': '05:30:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': '2100 S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '38548',
                      'time': '06:17:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.678572',
                      'lng': '-105.005644',
                      'location': '1500 W EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '38683',
                      'time': '09:23:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.678572',
                      'lng': '-105.005644',
                      'location': '1500 W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '38689',
                      'time': '11:46:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.678589',
                      'lng': '-105.006409',
                      'location': 'W EVANS AVE / S PECOS ST',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '38726',
                      'time': '23:27:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': '2100 S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '38955',
                      'time': '06:32:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678659',
                      'lng': '-105.020369',
                      'location': '2100 S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '38990',
                      'time': '20:04:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.678672',
                      'lng': '-105.018024',
                      'location': '2600 W EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '39278',
                      'time': '01:28:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.678652',
                      'lng': '-105.021942',
                      'location': '2800 W EVANS AVE',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '39298',
                      'time': '00:35:20',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678678',
                      'lng': '-105.014789',
                      'location': '2321 W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '39497',
                      'time': '00:54:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.678672',
                      'lng': '-105.018024',
                      'location': '2600 W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '39872',
                      'time': '08:49:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.678654',
                      'lng': '-105.02147',
                      'location': '2770 W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '39996',
                      'time': '07:29:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': '2 - Alarm False',
                      'district': '4',
                      'lat': '39.678654',
                      'lng': '-105.02147',
                      'location': '2770 W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '39997',
                      'time': '22:59:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.678685',
                      'lng': '-105.015696',
                      'location': 'S ZUNI ST / W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '40185',
                      'time': '11:05:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.678668',
                      'lng': '-105.013363',
                      'location': '2200 W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '40651',
                      'time': '17:57:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.678668',
                      'lng': '-105.013363',
                      'location': 'S VALLEJO ST / W EVANS AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '40658',
                      'time': '11:24:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.678649',
                      'lng': '-105.01102',
                      'location': 'W EVANS AVE / S Tejon St',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '41022',
                      'time': '02:51:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.678681',
                      'lng': '-105.01646',
                      'location': '2465 W EVANS AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '41253',
                      'time': '02:42:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.67959',
                      'lng': '-105.007181',
                      'location': '1667 W PACIFIC PL',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '44689',
                      'time': '17:47:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.679644',
                      'lng': '-105.013366',
                      'location': 'S VALLEJO ST / W PACIFIC PL',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '46091',
                      'time': '09:53:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.680509',
                      'lng': '-105.02503',
                      'location': 'S FEDERAL BLVD / W ASBURY AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '46843',
                      'time': '17:31:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.680509',
                      'lng': '-105.02503',
                      'location': '2000 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '46859',
                      'time': '23:11:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.680509',
                      'lng': '-105.02503',
                      'location': 'W ASBURY AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '46984',
                      'time': '23:12:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.680532',
                      'lng': '-105.020362',
                      'location': 'S CLAY ST / W ASBURY AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '47102',
                      'time': '14:47:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.680509',
                      'lng': '-105.02503',
                      'location': 'S FEDERAL BLVD / W ASBURY AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '47357',
                      'time': '23:22:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.680509',
                      'lng': '-105.02503',
                      'location': 'W ASBURY AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '47594',
                      'time': '15:22:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.680509',
                      'lng': '-105.02503',
                      'location': '2000-BLK S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '48043',
                      'time': '20:27:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.680509',
                      'lng': '-105.02503',
                      'location': 'W ASBURY AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '48138',
                      'time': '22:27:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.680413',
                      'lng': '-105.025031',
                      'location': '2005 S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '48435',
                      'time': '19:56:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.680509',
                      'lng': '-105.02503',
                      'location': 'W ASBURY AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '48656',
                      'time': '23:55:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.680958',
                      'lng': '-105.025032',
                      'location': '1973 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '49097',
                      'time': '01:34:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.682287',
                      'lng': '-105.021538',
                      'location': 'W JEWELL AVE / S DALE CT',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '51610',
                      'time': '14:56:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.682273',
                      'lng': '-105.023746',
                      'location': 'W JEWELL AVE / S ELIOT ST',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '51671',
                      'time': '12:40:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.682273',
                      'lng': '-105.023746',
                      'location': 'W JEWELL AVE / S ELIOT ST',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '51686',
                      'time': '09:17:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.682204',
                      'lng': '-105.004079',
                      'location': 'S NAVAJO ST / W JEWELL AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '52974',
                      'time': '00:10:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.682204',
                      'lng': '-105.004079',
                      'location': '1400 W JEWELL AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '52990',
                      'time': '23:19:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Y - Broadcast',
                      'district': '4',
                      'lat': '39.682339',
                      'lng': '-105.015693',
                      'location': 'S ZUNI ST / W JEWELL AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '53059',
                      'time': '02:33:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.682178',
                      'lng': '-105.001828',
                      'location': 'S PLATTE RIVER DR',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '54122',
                      'time': '20:47:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.684079',
                      'lng': '-105.025042',
                      'location': '1800 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '54255',
                      'time': '22:48:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.682296',
                      'lng': '-105.020367',
                      'location': 'W JEWELL AVE / S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '54263',
                      'time': '15:00:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.684079',
                      'lng': '-105.025042',
                      'location': 'S FEDERAL BLVD / W COLORADO AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '54393',
                      'time': '11:29:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.684079',
                      'lng': '-105.025042',
                      'location': '1800 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '54397',
                      'time': '23:48:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.684079',
                      'lng': '-105.023744',
                      'location': 'W COLORADO AVE / S ELIOT ST',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '54410',
                      'time': '21:04:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.684079',
                      'lng': '-105.025042',
                      'location': '1800 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '54967',
                      'time': '18:30:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.684129',
                      'lng': '-105.01568',
                      'location': 'W COLORADO AVE / S ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '55086',
                      'time': '02:24:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.683249000000004',
                      'lng': '-105.02504',
                      'location': '1845 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '55253',
                      'time': '01:20:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.684079',
                      'lng': '-105.023744',
                      'location': 'S ELIOT ST / W COLORADO AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '55325',
                      'time': '09:28:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.684079',
                      'lng': '-105.025042',
                      'location': '1800 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '55609',
                      'time': '23:18:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.684079',
                      'lng': '-105.025042',
                      'location': 'S FEDERAL BLVD / W COLORADO AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '55611',
                      'time': '23:13:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Vehicle Towed',
                      'district': '4',
                      'lat': '39.684552',
                      'lng': '-105.01568',
                      'location': '1775 S ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '55647',
                      'time': '06:39:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.685011',
                      'lng': '-105.015681',
                      'location': '1750 S ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '57988',
                      'time': '01:01:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.685449',
                      'lng': '-105.006329',
                      'location': '1755 S PECOS ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '58772',
                      'time': '01:03:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.685886000000004',
                      'lng': '-105.025054',
                      'location': 'W MEXICO AVE / S FEDERAL BLVD',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '58981',
                      'time': '01:52:21',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.685886000000004',
                      'lng': '-105.025054',
                      'location': 'W MEXICO AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '58999',
                      'time': '00:01:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.685429',
                      'lng': '-105.025049',
                      'location': '1725 S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '59506',
                      'time': '11:50:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.685857',
                      'lng': '-105.006321',
                      'location': '1700 S PECOS ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '59752',
                      'time': '00:22:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.685857',
                      'lng': '-105.006321',
                      'location': '1700 S PECOS ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '59788',
                      'time': '20:02:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.685891',
                      'lng': '-105.011967',
                      'location': 'W MEXICO AVE / S UMATILLA ST',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '60415',
                      'time': '22:25:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.685857',
                      'lng': '-105.006321',
                      'location': '1700 S PECOS ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '60486',
                      'time': '23:57:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.685886000000004',
                      'lng': '-105.025054',
                      'location': 'W MEXICO AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '61044',
                      'time': '07:33:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '4',
                      'lat': '39.68768',
                      'lng': '-105.025051',
                      'location': '1600 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '61914',
                      'time': '23:20:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.68768',
                      'lng': '-105.025051',
                      'location': 'S FEDERAL BLVD / W IOWA AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '62517',
                      'time': '19:13:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.68768',
                      'lng': '-105.025051',
                      'location': 'W IOWA AVE / S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '63158',
                      'time': '22:55:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.68768',
                      'lng': '-105.025051',
                      'location': 'S FEDERAL BLVD / W IOWA AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '63176',
                      'time': '17:54:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.68768',
                      'lng': '-105.025051',
                      'location': 'S FEDERAL BLVD / W IOWA AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '63815',
                      'time': '12:11:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': '1 - Alarm RP On Scene',
                      'district': '4',
                      'lat': '39.688565',
                      'lng': '-105.025054',
                      'location': '1550 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '66979',
                      'time': '19:07:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.689493',
                      'lng': '-105.02271',
                      'location': 'W FLORIDA AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '69103',
                      'time': '23:02:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.689493',
                      'lng': '-105.02271',
                      'location': 'W FLORIDA AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '69105',
                      'time': '09:21:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.689488',
                      'lng': '-105.023807',
                      'location': '2900-BLK W FLORIDA AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '69709',
                      'time': '21:16:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.689493',
                      'lng': '-105.02271',
                      'location': 'W FLORIDA AVE / S DECATUR ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '69729',
                      'time': '00:22:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.689475',
                      'lng': '-105.007814',
                      'location': 'W FLORIDA AVE / S QUIETO CT',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '70110',
                      'time': '19:30:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.689488',
                      'lng': '-105.023807',
                      'location': '2900 W FLORIDA AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '70347',
                      'time': '20:19:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.689457',
                      'lng': '-105.005125',
                      'location': 'S OSAGE ST / W FLORIDA AVE',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '70403',
                      'time': '23:34:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.689478',
                      'lng': '-105.008763',
                      'location': 'S RARITAN ST / W FLORIDA AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '70406',
                      'time': '22:06:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.689514',
                      'lng': '-105.015708',
                      'location': 'W FLORIDA AVE / S ZUNI ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '71119',
                      'time': '15:33:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.689447',
                      'lng': '-105.002745',
                      'location': 'S MARIPOSA ST / W FLORIDA AVE',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '71167',
                      'time': '00:55:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.690805',
                      'lng': '-105.025059',
                      'location': '1400-BLK S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '71740',
                      'time': '23:46:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.690846',
                      'lng': '-105.025059',
                      'location': '1445 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '71788',
                      'time': '20:19:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.689488',
                      'lng': '-105.010425',
                      'location': 'W FLORIDA AVE / S SHOSHONE ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '71843',
                      'time': '18:30:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.690826',
                      'lng': '-105.018524',
                      'location': '1400 S CARLAN CT',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '71909',
                      'time': '15:19:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.690949',
                      'lng': '-105.02506',
                      'location': '1435 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '71968',
                      'time': '07:30:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.690805',
                      'lng': '-105.025059',
                      'location': '1400 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '73082',
                      'time': '07:27:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.691195',
                      'lng': '-105.025061',
                      'location': '1411 S FEDERAL BLVD',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '73378',
                      'time': '10:51:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.690819',
                      'lng': '-105.020383',
                      'location': '1400-BLK S CLAY ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '73751',
                      'time': '06:38:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.691648',
                      'lng': '-104.996863',
                      'location': 'S HURON ST / S PLATTE RIVER DR',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '74378',
                      'time': '00:14:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.691256',
                      'lng': '-105.002725',
                      'location': '1400-BLK S MARIPOSA ST',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '75463',
                      'time': '06:03:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.691599',
                      'lng': '-105.025062',
                      'location': '1340 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '75579',
                      'time': '12:34:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.692995',
                      'lng': '-105.014583',
                      'location': '1306 S WYANDOT ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '78574',
                      'time': '17:45:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.693113',
                      'lng': '-105.02317',
                      'location': 'W LOUISIANA AVE / S ELIOT ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '80467',
                      'time': '00:10:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.693099',
                      'lng': '-105.006732',
                      'location': 'W LOUISIANA AVE / S QUIVAS ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '81245',
                      'time': '10:03:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.693125',
                      'lng': '-105.02038',
                      'location': 'W LOUISIANA AVE / S CLAY ST',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '81760',
                      'time': '15:43:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.693088',
                      'lng': '-105.001546',
                      'location': 'W LOUISIANA AVE / S LIPAN ST',
                      'outcome': 'warning',
                      'precinct': '422',
                      'raw_row_number': '81970',
                      'time': '08:38:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.69308',
                      'lng': '-104.998019',
                      'location': 'W LOUISIANA AVE / S INCA ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '82709',
                      'time': '10:19:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.693115',
                      'lng': '-105.010737',
                      'location': '1300-BLK S SHOSHONE ST',
                      'outcome': 'arrest',
                      'precinct': '422',
                      'raw_row_number': '83056',
                      'time': '23:28:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.69313',
                      'lng': '-105.013633',
                      'location': 'W LOUISIANA AVE / S VALLEJO ST',
                      'outcome': 'citation',
                      'precinct': '422',
                      'raw_row_number': '83747',
                      'time': '07:02:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.696148',
                      'lng': '-104.996799',
                      'location': '1129 S HURON ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '86620',
                      'time': '22:35:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.69472',
                      'lng': '-105.002695',
                      'location': '1208 S MARIPOSA ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '86861',
                      'time': '12:50:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.695636',
                      'lng': '-105.003893',
                      'location': '1100 S NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '87012',
                      'time': '23:33:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.695636',
                      'lng': '-105.003893',
                      'location': '1100 S NAVAJO ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '87020',
                      'time': '21:11:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.696259',
                      'lng': '-104.996797',
                      'location': '1123 S HURON ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '87255',
                      'time': '04:19:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.695787',
                      'lng': '-105.006715',
                      'location': 'W MOSIER PL / S QUIVAS ST',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '87625',
                      'time': '06:44:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.695794',
                      'lng': '-105.008717',
                      'location': 'S RARITAN ST / W MOSIER PL',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '88336',
                      'time': '22:11:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.696728',
                      'lng': '-105.025059',
                      'location': '1101 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '422',
                      'raw_row_number': '88755',
                      'time': '10:15:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '423': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1',
                      'time': '00:02:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '16',
                      'time': '00:25:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.630666',
                      'lng': '-105.102551',
                      'location': '4830 S HOLLAND WAY',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '72',
                      'time': '22:58:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.63015',
                      'lng': '-105.081693',
                      'location': 'W LAYTON AVE / S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '138',
                      'time': '23:46:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.634297',
                      'lng': '-105.109902',
                      'location': '4490 S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '166',
                      'time': '00:49:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.634297',
                      'lng': '-105.109902',
                      'location': '4490 S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '178',
                      'time': '00:45:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.634297',
                      'lng': '-105.109902',
                      'location': '4490 S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '207',
                      'time': '01:13:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '287',
                      'time': '22:38:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '300',
                      'time': '23:49:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '301',
                      'time': '04:41:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '313',
                      'time': '01:18:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.631343',
                      'lng': '-105.081671',
                      'location': '4797 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '331',
                      'time': '23:22:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.631343',
                      'lng': '-105.081671',
                      'location': '4797 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '332',
                      'time': '05:08:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.631343',
                      'lng': '-105.081671',
                      'location': '4797 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '334',
                      'time': '23:33:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.631343',
                      'lng': '-105.081671',
                      'location': '4797 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '348',
                      'time': '05:10:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.631343',
                      'lng': '-105.081671',
                      'location': '4797 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '349',
                      'time': '23:17:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.631343',
                      'lng': '-105.081671',
                      'location': '4797 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '356',
                      'time': '00:00:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.631343',
                      'lng': '-105.081671',
                      'location': '4797 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '357',
                      'time': '23:34:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.631343',
                      'lng': '-105.081671',
                      'location': '4797 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '362',
                      'time': '23:16:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.631343',
                      'lng': '-105.081671',
                      'location': '4797 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '363',
                      'time': '23:54:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '452',
                      'time': '04:55:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.631373',
                      'lng': '-105.089859',
                      'location': 'W UNION AVE / S BALSAM WAY',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '528',
                      'time': '07:09:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.618337',
                      'lng': '-105.091244',
                      'location': 'W CRESTLINE AVE / S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '546',
                      'time': '22:42:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.631373',
                      'lng': '-105.089859',
                      'location': 'W UNION AVE / S BALSAM WAY',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '572',
                      'time': '07:15:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.631373',
                      'lng': '-105.089859',
                      'location': 'W LAYTON AVE / S BALSAM WAY',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '586',
                      'time': '07:32:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.631816',
                      'lng': '-105.102705',
                      'location': '4700-BLK S GARRISON ST',
                      'outcome': 'arrest',
                      'precinct': '423',
                      'raw_row_number': '663',
                      'time': '23:24:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.627089',
                      'lng': '-105.09396',
                      'location': 'S BALSAM WAY / S DUDLEY ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '785',
                      'time': '20:06:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.627089',
                      'lng': '-105.09396',
                      'location': 'S BALSAM WAY / S DUDLEY ST',
                      'outcome': 'arrest',
                      'precinct': '423',
                      'raw_row_number': '788',
                      'time': '00:36:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.614421',
                      'lng': '-105.091152',
                      'location': 'S WADSWORTH BLVD / W CROSS DR',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '906',
                      'time': '00:08:22',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.614514',
                      'lng': '-105.094145',
                      'location': '8601 W CROSS DR',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '931',
                      'time': '23:22:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.627835',
                      'lng': '-105.102396',
                      'location': '4800 S GARLAND ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '959',
                      'time': '12:34:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.614514',
                      'lng': '-105.094145',
                      'location': '8601 W CROSS DR',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1020',
                      'time': '00:01:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.628321',
                      'lng': '-105.10396',
                      'location': 'S HOLLAND ST / W SARATOGA PL',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1061',
                      'time': '00:07:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '4',
                      'lat': '39.614514',
                      'lng': '-105.094145',
                      'location': '8601 W CROSS DR',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1064',
                      'time': '01:23:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.615018',
                      'lng': '-105.064623',
                      'location': 'W SUMAC AVE / S INGALLS ST',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '1176',
                      'time': '07:42:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.628747',
                      'lng': '-105.10466',
                      'location': 'S HOLLAND CT / W SARATOGA PL',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1204',
                      'time': '00:46:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.615314',
                      'lng': '-105.064137',
                      'location': 'W GRANT RANCH BLVD / W SUMAC AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1319',
                      'time': '08:01:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.615314',
                      'lng': '-105.064137',
                      'location': 'W GRANT RANCH BLVD / W SUMAC AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '1332',
                      'time': '07:11:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.632898',
                      'lng': '-105.090025',
                      'location': '4601 S BALSAM WAY',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1364',
                      'time': '00:09:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.632952',
                      'lng': '-105.105375',
                      'location': 'W TUFTS AVE / S INDEPENDENCE ST',
                      'outcome': 'arrest',
                      'precinct': '423',
                      'raw_row_number': '1372',
                      'time': '23:07:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.615671',
                      'lng': '-105.060505',
                      'location': 'S JAY CIR / W ALAMO DR',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '1488',
                      'time': '07:21:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.632922',
                      'lng': '-105.088008',
                      'location': '7977 W TUFTS AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1526',
                      'time': '04:37:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.616788',
                      'lng': '-105.071633',
                      'location': 'W DORADO DR / W GRANT RANCH BLVD',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '1634',
                      'time': '10:43:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.616788',
                      'lng': '-105.071633',
                      'location': 'W GRANT RANCH BLVD / W DORADO DR',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '1658',
                      'time': '10:32:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.633637',
                      'lng': '-105.109899',
                      'location': '4550 S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1695',
                      'time': '22:28:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.633637',
                      'lng': '-105.109899',
                      'location': '4550 S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1754',
                      'time': '22:30:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.633637',
                      'lng': '-105.109899',
                      'location': '4550 S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1762',
                      'time': '22:04:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.629932',
                      'lng': '-105.087154',
                      'location': 'W LAYTON AVE / S WADSWORTH WAY',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '1859',
                      'time': '23:38:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.633688',
                      'lng': '-105.095435',
                      'location': 'W STETSON PL / S DUDLEY ST',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '1924',
                      'time': '09:54:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.630128',
                      'lng': '-105.081693',
                      'location': '4801 S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2148',
                      'time': '00:09:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.625214',
                      'lng': '-105.102778',
                      'location': 'W BELLEWOOD PL / S GARLAND ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2210',
                      'time': '00:02:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.634264',
                      'lng': '-105.109902',
                      'location': 'S KIPLING ST / W STANFORD AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '2235',
                      'time': '23:41:03',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.634264',
                      'lng': '-105.109902',
                      'location': 'S KIPLING ST / W STANFORD AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2243',
                      'time': '22:22:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.634264',
                      'lng': '-105.109902',
                      'location': 'W STANFORD AVE / S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2253',
                      'time': '01:06:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.634264',
                      'lng': '-105.109902',
                      'location': 'W STANFORD AVE / S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2257',
                      'time': '22:49:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.634264',
                      'lng': '-105.109902',
                      'location': 'W STANFORD AVE / S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2262',
                      'time': '00:44:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.616826',
                      'lng': '-105.065797',
                      'location': 'W GRANT RANCH BLVD / S JAY CIR',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '2325',
                      'time': '08:05:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.618235',
                      'lng': '-105.094082',
                      'location': 'W CRESTLINE AVE / S DOVER ST',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '2421',
                      'time': '18:19:09',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.644232',
                      'lng': '-105.06569',
                      'location': '6350 W MANSFIELD AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2617',
                      'time': '01:19:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.644568',
                      'lng': '-105.064902',
                      'location': '6300 W MANSFIELD AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2629',
                      'time': '01:03:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.644692',
                      'lng': '-105.063858',
                      'location': '6200 W MANSFIELD AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2630',
                      'time': '02:57:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.63015',
                      'lng': '-105.081693',
                      'location': 'W LAYTON AVE / S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2739',
                      'time': '23:47:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.634297',
                      'lng': '-105.109902',
                      'location': '4490 S KIPLING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '2900',
                      'time': '00:46:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.638739',
                      'lng': '-105.063575',
                      'location': '6100 W QUINCY AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '3003',
                      'time': '22:37:06',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.638766',
                      'lng': '-105.059847',
                      'location': '5800-blk W QUINCY AVE',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '3014',
                      'time': '04:45:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '3043',
                      'time': '23:01:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '3044',
                      'time': '22:04:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '3051',
                      'time': '00:03:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.618329',
                      'lng': '-105.092691',
                      'location': '8500 W CRESTLINE AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '3063',
                      'time': '01:15:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.634777',
                      'lng': '-105.04964',
                      'location': 'W TUFTS AVE / S WOLFF ST',
                      'outcome': 'arrest',
                      'precinct': '423',
                      'raw_row_number': '3576',
                      'time': '00:11:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.635118',
                      'lng': '-105.081795',
                      'location': 'S WADSWORTH BLVD / W STANFORD AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '3595',
                      'time': '21:39:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.635118',
                      'lng': '-105.081795',
                      'location': 'W STANFORD AVE / S WADSWORTH BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '3610',
                      'time': '05:21:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.635118',
                      'lng': '-105.081795',
                      'location': 'S WADSWORTH BLVD / W STANFORD AVE',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '3612',
                      'time': '00:52:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.638639',
                      'lng': '-105.045304',
                      'location': 'S UTICA ST / W QUINCY AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '3752',
                      'time': '22:57:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.638743',
                      'lng': '-105.072255',
                      'location': 'W QUINCY AVE / S PIERCE ST',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '3777',
                      'time': '20:24:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.639907',
                      'lng': '-105.076546',
                      'location': 'S PIERCE WAY / W PRINCETON AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '3901',
                      'time': '14:25:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.643897',
                      'lng': '-105.060372',
                      'location': '5800 W MANSFIELD AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '4474',
                      'time': '01:13:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.639568',
                      'lng': '-105.051943',
                      'location': 'S ZENOBIA ST / W QUINCY AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '4528',
                      'time': '21:50:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.638127',
                      'lng': '-105.049358',
                      'location': 'S WOLFF ST / W RADCLIFF AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '4905',
                      'time': '21:56:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'S SHERIDAN BLVD / W HAMPDEN AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5085',
                      'time': '14:30:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'W HAMPDEN AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5094',
                      'time': '06:11:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed,L -',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'W HAMPDEN AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5102',
                      'time': '22:37:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'W HAMPDEN AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5110',
                      'time': '01:16:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'S SHERIDAN BLVD / W HAMPDEN AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5119',
                      'time': '12:19:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'S SHERIDAN BLVD / W HAMPDEN AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5266',
                      'time': '21:46:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.638694',
                      'lng': '-105.084414',
                      'location': 'W QUINCY AVE / S Zephyr St',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5550',
                      'time': '00:04:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.650993',
                      'lng': '-105.053083',
                      'location': '3663 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5744',
                      'time': '22:47:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.653342',
                      'lng': '-105.059714',
                      'location': '5800 W HAMPDEN AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5948',
                      'time': '00:19:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.652982',
                      'lng': '-105.066697',
                      'location': 'W HAMPDEN S FRTG / S KENDALL ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '5967',
                      'time': '21:58:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.652982',
                      'lng': '-105.066697',
                      'location': 'W HAMPDEN S FRTG / S KENDALL ST',
                      'outcome': 'arrest',
                      'precinct': '423',
                      'raw_row_number': '5977',
                      'time': '21:45:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.651788',
                      'lng': '-105.053087',
                      'location': 'S SHERIDAN BLVD / W HAMPDEN S FRTG',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '6262',
                      'time': '14:19:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.653154',
                      'lng': '-105.060193',
                      'location': '5800 W HAMPDEN AVE',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '6341',
                      'time': '00:48:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'W HAMPDEN AVE / S SHERIDAN BLVD',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '6345',
                      'time': '22:59:32',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.650993',
                      'lng': '-105.053083',
                      'location': '3663 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '6358',
                      'time': '01:11:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.650993',
                      'lng': '-105.053083',
                      'location': '3663 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '6370',
                      'time': '22:19:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'S SHERIDAN BLVD / W HAMPDEN AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '6385',
                      'time': '00:31:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'W HAMPDEN AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '6475',
                      'time': '05:39:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'W HAMPDEN AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '6484',
                      'time': '05:53:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'W HAMPDEN AVE / S SHERIDAN BLVD',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '6522',
                      'time': '23:33:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.653479',
                      'lng': '-105.062593',
                      'location': '5995 W HAMPDEN N FRTG',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '6601',
                      'time': '00:13:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.651392',
                      'lng': '-105.05314',
                      'location': '3633 S SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '423',
                      'raw_row_number': '7007',
                      'time': '21:40:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'No Police Needed',
                      'district': '4',
                      'lat': '39.651392',
                      'lng': '-105.05314',
                      'location': '3633 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '7010',
                      'time': '21:38:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.653184',
                      'lng': '-105.053092',
                      'location': 'W HAMPDEN AVE / S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '7127',
                      'time': '22:19:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.647512',
                      'lng': '-105.053009',
                      'location': 'S SHERIDAN BLVD / W LEHIGH AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '7217',
                      'time': '22:28:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.653632',
                      'lng': '-105.043062',
                      'location': '3551 S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '7924',
                      'time': '10:15:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Detox Van',
                      'district': '4',
                      'lat': '39.653632',
                      'lng': '-105.043062',
                      'location': '3551 S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '8048',
                      'time': '14:11:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.653769',
                      'lng': '-105.059821',
                      'location': '3481 S FENTON ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '8439',
                      'time': '02:54:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.653751',
                      'lng': '-105.05319',
                      'location': '3500 S SHERIDAN BLVD',
                      'outcome': 'arrest',
                      'precinct': '423',
                      'raw_row_number': '9063',
                      'time': '23:39:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.654123',
                      'lng': '-105.041341',
                      'location': '3500 S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '9865',
                      'time': '03:07:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.654123',
                      'lng': '-105.041341',
                      'location': '3500 S RALEIGH ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '9866',
                      'time': '23:40:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.656729',
                      'lng': '-105.049663',
                      'location': 'S ZENOBIA ST / W DARTMOUTH AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10243',
                      'time': '00:23:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.657173',
                      'lng': '-105.053221',
                      'location': 'S SHERIDAN BLVD / W COLGATE DR',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '10333',
                      'time': '01:05:31',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.657173',
                      'lng': '-105.053221',
                      'location': 'S SHERIDAN BLVD / W COLGATE DR',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '10334',
                      'time': '01:05:31',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.655811',
                      'lng': '-105.056211',
                      'location': '5600 W DARTMOUTH AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10613',
                      'time': '23:31:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10680',
                      'time': '19:35:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': 'S SHERIDAN BLVD / W DARTMOUTH AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10683',
                      'time': '23:29:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10741',
                      'time': '23:18:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10760',
                      'time': '19:09:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10775',
                      'time': '02:09:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.655994',
                      'lng': '-105.053213',
                      'location': '3130 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10799',
                      'time': '14:07:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10836',
                      'time': '01:31:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10837',
                      'time': '20:31:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.657082',
                      'lng': '-105.048775',
                      'location': 'W DARTMOUTH AVE / S YATES ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '10919',
                      'time': '18:43:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '4',
                      'lat': '39.657097',
                      'lng': '-105.049908',
                      'location': '3086 S ZENOBIA ST',
                      'outcome': 'arrest',
                      'precinct': '423',
                      'raw_row_number': '10928',
                      'time': '12:55:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '11119',
                      'time': '11:32:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.655845',
                      'lng': '-105.058698',
                      'location': 'S GOLDEN WAY / W DARTMOUTH AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '11227',
                      'time': '00:25:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '11323',
                      'time': '23:24:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '11333',
                      'time': '05:43:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '11359',
                      'time': '08:57:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.656955',
                      'lng': '-105.049096',
                      'location': '5000 W DARTMOUTH AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '11503',
                      'time': '14:06:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.656955',
                      'lng': '-105.049096',
                      'location': '5000 W DARTMOUTH AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '11504',
                      'time': '13:55:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': 'S SHERIDAN BLVD / W DARTMOUTH AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '11989',
                      'time': '14:05:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Y - Broadcast',
                      'district': '4',
                      'lat': '39.656729',
                      'lng': '-105.049663',
                      'location': 'W DARTMOUTH AVE / S ZENOBIA ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '12091',
                      'time': '18:00:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.656729',
                      'lng': '-105.049663',
                      'location': 'W DARTMOUTH AVE / S ZENOBIA ST',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '12103',
                      'time': '20:06:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.654672',
                      'lng': '-105.063917',
                      'location': '3400-BLK S IVAN CT',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '12204',
                      'time': '23:09:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.656023',
                      'lng': '-105.053214',
                      'location': '3125 S SHERIDAN BLVD',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '12225',
                      'time': '12:01:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.657442',
                      'lng': '-105.047901',
                      'location': '3100 S WOLFF ST',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '12239',
                      'time': '00:07:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.659398',
                      'lng': '-105.054408',
                      'location': '3003 S DEPEW ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '12446',
                      'time': '23:27:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Detox Van',
                      'district': '4',
                      'lat': '39.656165',
                      'lng': '-105.053216',
                      'location': '3100 S SHERIDAN BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '12534',
                      'time': '14:27:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.66068',
                      'lng': '-105.071756',
                      'location': 'W DARTMOUTH AVE / S NEWLAND ST',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '12590',
                      'time': '20:05:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.657246',
                      'lng': '-105.033727',
                      'location': '3400-BLK S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '12836',
                      'time': '12:00:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.66159',
                      'lng': '-105.063972',
                      'location': 'S INGALLS WAY / W BATES AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '13708',
                      'time': '11:52:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'X - Exchanged Info',
                      'district': '4',
                      'lat': '39.661506',
                      'lng': '-105.062927',
                      'location': 'S IVAN WAY / W BATES AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '13997',
                      'time': '10:50:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.659304',
                      'lng': '-105.057776',
                      'location': '3030 S GOLDEN WAY',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '14087',
                      'time': '11:46:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.657911',
                      'lng': '-105.053227',
                      'location': 'S SHERIDAN BLVD / W COLUMBIA PL',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '14101',
                      'time': '22:15:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.658144',
                      'lng': '-105.046128',
                      'location': 'W DARTMOUTH AVE / S VRAIN ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '14287',
                      'time': '00:57:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.662774',
                      'lng': '-105.079332',
                      'location': 'S WEBSTER ST / W DARTMOUTH AVE',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '14845',
                      'time': '23:14:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.664727',
                      'lng': '-105.05325',
                      'location': 'S SHERIDAN BLVD / W BROWN PL',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '14941',
                      'time': '00:09:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '4',
                      'lat': '39.663725',
                      'lng': '-105.025137',
                      'location': 'S FEDERAL BLVD / W BATES AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '14996',
                      'time': '14:39:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.663725',
                      'lng': '-105.025137',
                      'location': 'S FEDERAL BLVD / W BATES AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '15034',
                      'time': '15:19:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '4',
                      'lat': '39.665007',
                      'lng': '-105.029886',
                      'location': 'W AMHERST AVE / S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '15109',
                      'time': '05:34:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.665007',
                      'lng': '-105.029886',
                      'location': '2800 S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '15112',
                      'time': '03:08:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.663533',
                      'lng': '-105.031212',
                      'location': '2900 S IRVING ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '15383',
                      'time': '00:21:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Report Made',
                      'district': '4',
                      'lat': '39.663014',
                      'lng': '-105.06729',
                      'location': '2855 S LAMAR ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '15456',
                      'time': '16:34:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.663725',
                      'lng': '-105.025137',
                      'location': 'S FEDERAL BLVD / W BATES AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '15464',
                      'time': '21:42:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.663725',
                      'lng': '-105.025137',
                      'location': 'S FEDERAL BLVD / W BATES AVE',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '15601',
                      'time': '09:14:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.662574',
                      'lng': '-105.053242',
                      'location': 'S SHERIDAN BLVD / W BATES AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '16020',
                      'time': '00:01:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.665032',
                      'lng': '-105.026058',
                      'location': 'W AMHERST AVE / S GREEN CT',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '16199',
                      'time': '18:09:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.665039',
                      'lng': '-105.025124',
                      'location': 'W AMHERST AVE / S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '16240',
                      'time': '23:41:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.665039',
                      'lng': '-105.025124',
                      'location': 'S FEDERAL BLVD / W AMHERST AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '16366',
                      'time': '23:54:40',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.665039',
                      'lng': '-105.025124',
                      'location': 'S FEDERAL BLVD / W AMHERST AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '16558',
                      'time': '08:24:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.663725',
                      'lng': '-105.025137',
                      'location': 'W BATES AVE / S FEDERAL BLVD',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '16807',
                      'time': '08:28:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.665039',
                      'lng': '-105.025124',
                      'location': 'S FEDERAL BLVD / W AMHERST AVE',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '16934',
                      'time': '07:45:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'L - Clearance',
                      'district': '4',
                      'lat': '39.663382',
                      'lng': '-105.034755',
                      'location': '2797 S LOWELL BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '17319',
                      'time': '03:19:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.665291',
                      'lng': '-105.078601',
                      'location': 'S WEBSTER ST / W AMHERST AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '17638',
                      'time': '00:56:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '4',
                      'lat': '39.665705',
                      'lng': '-105.025109',
                      'location': '2775 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '17814',
                      'time': '14:40:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.665775',
                      'lng': '-105.034789',
                      'location': 'S LOWELL BLVD / W AMHERST AVE',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '17939',
                      'time': '23:59:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '4',
                      'lat': '39.665567',
                      'lng': '-105.05325',
                      'location': '5200 W AMHERST AVE',
                      'outcome': 'warning',
                      'precinct': '423',
                      'raw_row_number': '19198',
                      'time': '23:27:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '4',
                      'lat': '39.667782',
                      'lng': '-105.055898',
                      'location': 'W YALE AVE / S BENTON ST',
                      'outcome': 'citation',
                      'precinct': '423',
                      'raw_row_number': '21114',
                      'time': '21:57:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '4',
                      'lat': '39.667748',
                      'lng': '-105.078689',
                      'location': 'W YALE AVE / S WEBSTER ST',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '21367',
                      'time': '22:10:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Back Up / Cover Car',
                      'district': '4',
                      'lat': '39.666944',
                      'lng': '-105.025111',
                      'location': '2700 S FEDERAL BLVD',
                      'outcome': 'NA',
                      'precinct': '423',
                      'raw_row_number': '21423',
                      'time': '23:23:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '511': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'N PEORIA ST / I70 EB',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '560725',
                      'time': '19:27:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '560776',
                      'time': '21:51:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.774205',
                      'lng': '-104.847036',
                      'location': 'I70 WB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '561069',
                      'time': '16:29:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'N PEORIA ST / I70 EB',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '561458',
                      'time': '07:47:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '564850',
                      'time': '21:01:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '564851',
                      'time': '02:31:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '565031',
                      'time': '09:08:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '565090',
                      'time': '21:46:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '565128',
                      'time': '12:46:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '565171',
                      'time': '22:09:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '565377',
                      'time': '20:19:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'N PEORIA ST / I70 EB',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '565396',
                      'time': '23:03:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '565555',
                      'time': '02:51:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.774205',
                      'lng': '-104.847036',
                      'location': 'I70 WB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '565672',
                      'time': '23:35:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.774205',
                      'lng': '-104.847036',
                      'location': 'I70 WB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '565673',
                      'time': '22:41:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '565877',
                      'time': '20:24:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '565878',
                      'time': '20:29:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.774205',
                      'lng': '-104.847036',
                      'location': 'I70 WB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '566561',
                      'time': '22:45:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '569990',
                      'time': '23:15:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '570243',
                      'time': '00:11:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.774205',
                      'lng': '-104.847036',
                      'location': 'N PEORIA ST / I70 WB',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '570294',
                      'time': '14:35:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.774205',
                      'lng': '-104.847036',
                      'location': 'N PEORIA ST / I70 WB',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '571072',
                      'time': '23:57:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.774205',
                      'lng': '-104.847036',
                      'location': 'I70 Wb / N Peoria St',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '571073',
                      'time': '15:01:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'N PEORIA ST / I70 EB',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '572372',
                      'time': '10:58:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.774008',
                      'lng': '-104.847034',
                      'location': 'I70 EB / N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '572541',
                      'time': '23:18:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.778302',
                      'lng': '-104.903433',
                      'location': 'I70 EB / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '574675',
                      'time': '15:05:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.778424',
                      'lng': '-104.903434',
                      'location': 'N QUEBEC ST / I70 WB',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '574827',
                      'time': '11:40:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.778302',
                      'lng': '-104.903433',
                      'location': 'I70 EB / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '577089',
                      'time': '03:55:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.778302',
                      'lng': '-104.903433',
                      'location': 'N QUEBEC ST / I70 EB',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '577209',
                      'time': '19:13:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.778302',
                      'lng': '-104.903433',
                      'location': 'I70 EB / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '577237',
                      'time': '17:21:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.778424',
                      'lng': '-104.903434',
                      'location': 'I70 WB / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '577562',
                      'time': '23:25:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.778424',
                      'lng': '-104.903434',
                      'location': 'I70 WB / N QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '577730',
                      'time': '07:17:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.782876',
                      'lng': '-104.900783',
                      'location': '0 0 I270 EB / N NORTHFIELD QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '605299',
                      'time': '20:44:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.782876',
                      'lng': '-104.900783',
                      'location': 'N NORTHFIELD QUEBEC ST / I270 EB',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '605370',
                      'time': '21:51:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.782876',
                      'lng': '-104.900783',
                      'location': 'N NORTHFIELD QUEBEC ST / I270 EB',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '605371',
                      'time': '22:18:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.776666',
                      'lng': '-104.847027',
                      'location': '4400 N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '612748',
                      'time': '18:53:50',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.776805',
                      'lng': '-104.847027',
                      'location': '4411 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '612952',
                      'time': '15:33:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.777976',
                      'lng': '-104.847031',
                      'location': '4495 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '614605',
                      'time': '01:11:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.775834',
                      'lng': '-104.865742',
                      'location': 'I70 WB / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '614845',
                      'time': '08:55:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.775623',
                      'lng': '-104.865743',
                      'location': 'I70 EB / N HAVANA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '617213',
                      'time': '22:25:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.775834',
                      'lng': '-104.865742',
                      'location': 'I70 WB / N HAVANA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '617315',
                      'time': '08:37:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.775834',
                      'lng': '-104.865742',
                      'location': 'I70 WB / N HAVANA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '617326',
                      'time': '23:56:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Supervisor Cancelled Inc',
                      'district': '5',
                      'lat': '39.776666',
                      'lng': '-104.847027',
                      'location': 'E 44TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '617737',
                      'time': '23:28:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.776666',
                      'lng': '-104.847027',
                      'location': 'E 44TH AVE / N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '617766',
                      'time': '14:20:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778468',
                      'lng': '-104.865754',
                      'location': '4444 N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '618911',
                      'time': '00:45:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.778704',
                      'lng': '-104.858995',
                      'location': 'E 45TH AVE / N KINGSTON ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '619316',
                      'time': '22:42:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.778698',
                      'lng': '-104.857648',
                      'location': '11194 E 45TH AVE',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '619826',
                      'time': '16:23:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.775831',
                      'lng': '-104.847028',
                      'location': '4300 N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '619944',
                      'time': '22:37:43',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.776666',
                      'lng': '-104.847027',
                      'location': 'E 44TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '620063',
                      'time': '03:46:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.776666',
                      'lng': '-104.847027',
                      'location': 'E 44TH AVE / N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '620064',
                      'time': '17:14:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.776666',
                      'lng': '-104.847027',
                      'location': '4400-Blk N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '620065',
                      'time': '15:04:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.776666',
                      'lng': '-104.847027',
                      'location': 'E 44TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '620262',
                      'time': '19:20:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.777919',
                      'lng': '-104.850675',
                      'location': 'E 45TH AVE / N PARIS ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '620823',
                      'time': '05:38:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.777919',
                      'lng': '-104.850675',
                      'location': 'E 45TH AVE / N PARIS ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '620824',
                      'time': '12:52:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.778782',
                      'lng': '-104.865819',
                      'location': 'E 45TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '622339',
                      'time': '16:55:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785557',
                      'lng': '-104.899794',
                      'location': 'N NORTHFIELD QUEBEC ST / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '622611',
                      'time': '22:30:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785557',
                      'lng': '-104.899794',
                      'location': 'E 49TH AVE / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '622613',
                      'time': '11:33:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.785557',
                      'lng': '-104.899794',
                      'location': 'N QUEBEC ST / N NORTHFIELD QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '622617',
                      'time': '19:34:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.784508',
                      'lng': '-104.861334',
                      'location': '4800 N JOLIET ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '629140',
                      'time': '23:26:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Detox Van',
                      'district': '5',
                      'lat': '39.782381',
                      'lng': '-104.848882',
                      'location': 'E 47TH AVE / N PARIS ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '629220',
                      'time': '22:14:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.785569',
                      'lng': '-104.89968',
                      'location': 'E NORTHFIELD BLVD / N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '629487',
                      'time': '11:27:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.785569',
                      'lng': '-104.89968',
                      'location': 'E NORTHFIELD BLVD / N QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '631229',
                      'time': '22:43:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.781278',
                      'lng': '-104.847015',
                      'location': '4660 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '632681',
                      'time': '23:30:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'N PEORIA ST / E 46TH AVE',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '632797',
                      'time': '04:49:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '633226',
                      'time': '18:56:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.782368',
                      'lng': '-104.856613',
                      'location': 'E 47TH AVE / N LIMA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '633467',
                      'time': '22:48:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.782582',
                      'lng': '-104.893111',
                      'location': '8216 E 49TH AVE',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '634166',
                      'time': '08:33:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '634326',
                      'time': '15:07:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '634341',
                      'time': '22:45:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.782381',
                      'lng': '-104.848882',
                      'location': 'E 47TH AVE / N PARIS ST',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '634678',
                      'time': '23:30:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.781989',
                      'lng': '-104.847012',
                      'location': '4685 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '635267',
                      'time': '22:25:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.781278',
                      'lng': '-104.847015',
                      'location': '4660 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '635559',
                      'time': '11:13:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '635815',
                      'time': '14:40:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': '4600 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '635819',
                      'time': '22:51:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781989',
                      'lng': '-104.847012',
                      'location': '4685 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '635848',
                      'time': '15:46:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.781989',
                      'lng': '-104.847012',
                      'location': '4685 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '635913',
                      'time': '16:49:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781989',
                      'lng': '-104.847012',
                      'location': '4685 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '636010',
                      'time': '10:34:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.782157',
                      'lng': '-104.868838',
                      'location': 'E 47TH AVE / N GENEVA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '636021',
                      'time': '23:06:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.782174',
                      'lng': '-104.872061',
                      'location': 'E 47TH AVE / N FLORENCE ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '636442',
                      'time': '09:35:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'File Only',
                      'district': '5',
                      'lat': '39.782179',
                      'lng': '-104.872858',
                      'location': '9910 E 47TH AVE',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '636593',
                      'time': '15:46:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.782179',
                      'lng': '-104.872858',
                      'location': '9910 E 47TH AVE',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '636596',
                      'time': '15:45:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.780551',
                      'lng': '-104.861321',
                      'location': '4600 N JOLIET ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '636672',
                      'time': '11:29:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.782363',
                      'lng': '-104.865818',
                      'location': 'E 47TH AVE / N HAVANA ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '637677',
                      'time': '17:24:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781195',
                      'lng': '-104.86328',
                      'location': '4640 N IRONTON ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '638029',
                      'time': '22:41:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '638789',
                      'time': '23:06:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '638792',
                      'time': '18:53:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.782373',
                      'lng': '-104.859012',
                      'location': 'E 47TH AVE / N KINGSTON ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '639814',
                      'time': '08:21:43',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.781989',
                      'lng': '-104.847012',
                      'location': '4685 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '640286',
                      'time': '01:29:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '640627',
                      'time': '21:12:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '640901',
                      'time': '11:08:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed,T -',
                      'district': '5',
                      'lat': '39.7822',
                      'lng': '-104.876251',
                      'location': 'E 47TH AVE / N DALLAS ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '641196',
                      'time': '22:44:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '641435',
                      'time': '18:56:59',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.782276',
                      'lng': '-104.863282',
                      'location': '2757 N IRONTON ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '641572',
                      'time': '15:00:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.779598',
                      'lng': '-104.847022',
                      'location': 'E 46TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '642355',
                      'time': '15:00:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.784307',
                      'lng': '-104.848886',
                      'location': '4800 N PARIS ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '644043',
                      'time': '15:28:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'E NORTHFIELD BLVD / N TRENTON ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '646095',
                      'time': '13:33:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'E NORTHFIELD BLVD / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '646540',
                      'time': '22:09:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'E NORTHFIELD BLVD / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '646548',
                      'time': '12:51:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'E NORTHFIELD BLVD / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '646552',
                      'time': '17:59:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.78554',
                      'lng': '-104.891659',
                      'location': '8302 E NORTHFIELD BLVD',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '646957',
                      'time': '16:47:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.785558',
                      'lng': '-104.89513',
                      'location': '8000 E NORTHFIELD BLVD',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '647158',
                      'time': '23:13:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'E NORTHFIELD BLVD / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '647294',
                      'time': '21:57:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.78892',
                      'lng': '-104.872144',
                      'location': '5025 N FLORENCE ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '648321',
                      'time': '00:08:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.785539',
                      'lng': '-104.891312',
                      'location': '8332 E NORTHFIELD BLVD',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '648625',
                      'time': '11:01:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '5',
                      'lat': '39.785535',
                      'lng': '-104.890532',
                      'location': '8400 E NORTHFIELD BLVD',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '649067',
                      'time': '22:00:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.785541',
                      'lng': '-104.891682',
                      'location': '8300 E NORTHFIELD BLVD',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '649083',
                      'time': '22:18:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.790286',
                      'lng': '-104.868934',
                      'location': 'N GENEVA ST / E 51ST AVE',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '649198',
                      'time': '04:29:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'E NORTHFIELD BLVD / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '649583',
                      'time': '22:18:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'E NORTHFIELD BLVD / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '649587',
                      'time': '13:18:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'N TRENTON ST / E NORTHFIELD BLVD',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '649604',
                      'time': '18:02:17',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'E NORTHFIELD BLVD / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '649617',
                      'time': '13:06:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.785564',
                      'lng': '-104.896262',
                      'location': 'E NORTHFIELD BLVD / N TRENTON ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '649626',
                      'time': '21:58:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.788407',
                      'lng': '-104.865796',
                      'location': '5000-BLK N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '650706',
                      'time': '04:56:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.790334',
                      'lng': '-104.855659',
                      'location': '11411 E 51ST AVE',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '651359',
                      'time': '22:44:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.786232',
                      'lng': '-104.848889',
                      'location': 'E 49TH AVE / N PARIS ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '652442',
                      'time': '16:47:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.797959',
                      'lng': '-104.866058',
                      'location': '5588 N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '663155',
                      'time': '02:03:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.798387',
                      'lng': '-104.866041',
                      'location': 'E 56TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '663531',
                      'time': '18:13:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.798337',
                      'lng': '-104.850007',
                      'location': 'E 56TH AVE / N OSWEGO ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '663895',
                      'time': '02:34:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.798337',
                      'lng': '-104.850007',
                      'location': 'E 56TH AVE / N OSWEGO ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '663900',
                      'time': '23:11:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.798387',
                      'lng': '-104.866041',
                      'location': '10500 E 56TH AVE',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '664096',
                      'time': '02:24:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.798387',
                      'lng': '-104.866041',
                      'location': 'E 56TH AVE / N HAVANA ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '664098',
                      'time': '02:57:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.798376',
                      'lng': '-104.861332',
                      'location': 'E 56TH AVE / N JOLIET ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '665443',
                      'time': '22:54:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.798376',
                      'lng': '-104.861332',
                      'location': 'E 56TH AVE / N JOLIET ST',
                      'outcome': 'citation',
                      'precinct': '511',
                      'raw_row_number': '665445',
                      'time': '22:13:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '5',
                      'lat': '39.798355',
                      'lng': '-104.855376',
                      'location': '11400 E 56TH AVE',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '665463',
                      'time': '22:39:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.795863',
                      'lng': '-104.858928',
                      'location': '11175 E 55TH AVE',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '666176',
                      'time': '00:16:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.792865',
                      'lng': '-104.847131',
                      'location': 'E 53RD AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '667666',
                      'time': '09:20:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.794504',
                      'lng': '-104.865943',
                      'location': '10500 E 54TH AVE',
                      'outcome': 'arrest',
                      'precinct': '511',
                      'raw_row_number': '668778',
                      'time': '16:20:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.798238',
                      'lng': '-104.847181',
                      'location': 'E 56TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '671195',
                      'time': '12:48:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.794221',
                      'lng': '-104.850001',
                      'location': '5401 N OSWEGO ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '671383',
                      'time': '00:22:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.794221',
                      'lng': '-104.850001',
                      'location': 'E 54TH AVE / N OSWEGO ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '671384',
                      'time': '22:53:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.798274',
                      'lng': '-104.861332',
                      'location': '5595 N JOLIET ST',
                      'outcome': 'NA',
                      'precinct': '511',
                      'raw_row_number': '671538',
                      'time': '22:02:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.792865',
                      'lng': '-104.847131',
                      'location': '5300-BLK N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '511',
                      'raw_row_number': '672116',
                      'time': '07:33:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'}],
             '512': [{'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.761197',
                      'lng': '-104.902752',
                      'location': 'E MLK BLVD / N QUEBEC ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '437576',
                      'time': '18:56:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.761967',
                      'lng': '-104.902744',
                      'location': 'E MLK BLVD / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '442861',
                      'time': '22:35:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.759347',
                      'lng': '-104.903197',
                      'location': 'N QUEBEC ST / E 29TH DR',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '451123',
                      'time': '01:53:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.763826',
                      'lng': '-104.90274',
                      'location': '3300-BLK N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '469897',
                      'time': '01:10:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.763826',
                      'lng': '-104.90274',
                      'location': '3300 N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '469899',
                      'time': '22:02:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.765397',
                      'lng': '-104.902604',
                      'location': '3500 N QUEBEC ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '471971',
                      'time': '03:45:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.768042',
                      'lng': '-104.902559',
                      'location': '3700-BLK N QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '485790',
                      'time': '15:50:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.76738',
                      'lng': '-104.902534',
                      'location': 'E 36TH AVE / N QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '489576',
                      'time': '21:34:22',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.76738',
                      'lng': '-104.902534',
                      'location': 'E 36TH AVE / N QUEBEC ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '490017',
                      'time': '23:48:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.770482',
                      'lng': '-104.902408',
                      'location': '3870 N QUEBEC ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '492163',
                      'time': '19:28:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.772568',
                      'lng': '-104.902316',
                      'location': '4000 N QUEBEC ST',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '507378',
                      'time': '23:29:31',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.748341',
                      'lng': '-104.888169',
                      'location': 'E 21ST AVE / N WILLOW ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '542275',
                      'time': '00:39:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.747458',
                      'lng': '-104.894015',
                      'location': 'E MONTVIEW BLVD / N ULSTER ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '544605',
                      'time': '23:41:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.747461',
                      'lng': '-104.892847',
                      'location': 'N UINTA ST / E MONTVIEW BLVD',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '544609',
                      'time': '14:21:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.747462',
                      'lng': '-104.891681',
                      'location': '2000-BLK N VALENTIA ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '544696',
                      'time': '22:52:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.751017',
                      'lng': '-104.898717',
                      'location': 'E 23RD AVE / N SYRACUSE ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '545307',
                      'time': '22:18:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.751017',
                      'lng': '-104.898717',
                      'location': '2300-BLK N SYRACUSE ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '545316',
                      'time': '08:06:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.750981',
                      'lng': '-104.891651',
                      'location': 'E 23RD AVE / N VALENTIA ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '545367',
                      'time': '19:03:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.747443',
                      'lng': '-104.898749',
                      'location': 'E MONTVIEW BLVD / N SYRACUSE ST',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '548914',
                      'time': '06:52:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.747466',
                      'lng': '-104.887001',
                      'location': 'E MONTVIEW BLVD / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '549150',
                      'time': '17:25:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.747466',
                      'lng': '-104.887001',
                      'location': 'E MONTVIEW BLVD / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '549157',
                      'time': '22:30:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.747443',
                      'lng': '-104.898749',
                      'location': 'E MONTVIEW BLVD / N SYRACUSE ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '549172',
                      'time': '15:27:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.749634',
                      'lng': '-104.886663',
                      'location': 'E 23RD AVE / N CENTRAL PARK BLVD',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '549824',
                      'time': '07:20:46',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.749634',
                      'lng': '-104.886663',
                      'location': 'N CENTRAL PARK BLVD / E 23RD AVE',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '549842',
                      'time': '10:47:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.749694',
                      'lng': '-104.882837',
                      'location': 'E 22ND AVE / N AKRON WAY',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '549880',
                      'time': '17:00:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.749676',
                      'lng': '-104.880889',
                      'location': '2200 N BEELER ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '550147',
                      'time': '07:52:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.750214',
                      'lng': '-104.887887',
                      'location': '2300 N CENTRAL PARK BLVD',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '550240',
                      'time': '19:14:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.759877',
                      'lng': '-104.890799',
                      'location': 'E MLK BLVD / N CENTRAL PARK BLVD',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '551512',
                      'time': '22:05:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.759877',
                      'lng': '-104.890799',
                      'location': 'E MLK BLVD / N CENTRAL PARK BLVD',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '551515',
                      'time': '20:31:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.760065',
                      'lng': '-104.867708',
                      'location': 'E MLK BLVD / N GENEVA CT',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '551826',
                      'time': '17:22:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.760076',
                      'lng': '-104.869579',
                      'location': 'E MLK BLVD / N GALENA ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '551845',
                      'time': '16:30:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.762998',
                      'lng': '-104.8874',
                      'location': 'E 33RD AVE / N XANTHIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '551929',
                      'time': '01:21:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '552141',
                      'time': '19:50:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.770537',
                      'lng': '-104.847032',
                      'location': '3862 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '553254',
                      'time': '11:03:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': '3900 N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '553543',
                      'time': '19:32:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '553544',
                      'time': '19:40:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '553576',
                      'time': '19:32:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '5',
                      'lat': '39.756506',
                      'lng': '-104.864556',
                      'location': 'E 28TH AVE / N IOLA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '553866',
                      'time': '03:18:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.770959',
                      'lng': '-104.833066',
                      'location': 'E 39TH AVE / N WHEELING ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '553926',
                      'time': '09:09:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.76004',
                      'lng': '-104.878792',
                      'location': 'E MLK BLVD / N BEELER ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '554213',
                      'time': '13:04:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.763085',
                      'lng': '-104.878082',
                      'location': 'E 33RD AVE / N BOSTON ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '554343',
                      'time': '08:00:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.768123',
                      'lng': '-104.83301',
                      'location': '3760 N WHEELING ST',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '555111',
                      'time': '16:27:38',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.768344',
                      'lng': '-104.847022',
                      'location': '3723 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '555322',
                      'time': '15:00:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.769633',
                      'lng': '-104.848597',
                      'location': '3800 N PARIS ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '555470',
                      'time': '04:31:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '555888',
                      'time': '21:40:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '555968',
                      'time': '17:32:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '555969',
                      'time': '22:51:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.75474',
                      'lng': '-104.900544',
                      'location': 'E 26TH AVE / N ROSLYN ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '556076',
                      'time': '00:47:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.75769',
                      'lng': '-104.898962',
                      'location': 'N SYRACUSE ST / E 29TH AVE',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '556193',
                      'time': '15:23:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.754745',
                      'lng': '-104.874465',
                      'location': '9781 E 26TH AVE',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '556277',
                      'time': '07:57:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.757701',
                      'lng': '-104.900529',
                      'location': '7500-BLK E 29TH AVE',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '556434',
                      'time': '10:18:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.759877',
                      'lng': '-104.890799',
                      'location': 'E MLK BLVD / N CENTRAL PARK BLVD',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '556575',
                      'time': '17:24:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.759877',
                      'lng': '-104.890799',
                      'location': 'E MLK BLVD / N CENTRAL PARK BLVD',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '556576',
                      'time': '21:45:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.760015',
                      'lng': '-104.872401',
                      'location': 'E MLK BLVD / N ELMIRA ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '556748',
                      'time': '15:46:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.760015',
                      'lng': '-104.872401',
                      'location': 'E MLK BLVD / N ELMIRA ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '556757',
                      'time': '20:15:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.760006',
                      'lng': '-104.870527',
                      'location': 'E MLK BLVD / N FULTON ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '556791',
                      'time': '15:28:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.761458',
                      'lng': '-104.890049',
                      'location': '3200-BLK N CENTRAL PARK BLVD',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '556989',
                      'time': '01:27:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.769631',
                      'lng': '-104.847027',
                      'location': 'E 38TH AVE / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '557612',
                      'time': '15:36:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.767198',
                      'lng': '-104.83301',
                      'location': '3728 N WHEELING ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '557726',
                      'time': '14:21:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.767269',
                      'lng': '-104.837596',
                      'location': 'E 37TH AVE / N TROY ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '557731',
                      'time': '02:47:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.767662',
                      'lng': '-104.842924',
                      'location': '12500 E 37TH AVE',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '557882',
                      'time': '19:54:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.770359',
                      'lng': '-104.847031',
                      'location': '3850 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '558033',
                      'time': '04:14:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.770359',
                      'lng': '-104.847031',
                      'location': '3850 N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '558092',
                      'time': '23:14:24',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.767806',
                      'lng': '-104.844756',
                      'location': 'E 37TH AVE / N QUENTIN ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '558427',
                      'time': '23:45:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.754745',
                      'lng': '-104.864572',
                      'location': 'E 26th Ave / N IOLA ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '558651',
                      'time': '11:29:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.754745',
                      'lng': '-104.864572',
                      'location': '2600-IRONTON N IOLA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '558652',
                      'time': '07:30:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.768581',
                      'lng': '-104.847023',
                      'location': '3737 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '558910',
                      'time': '14:53:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '559091',
                      'time': '18:13:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.77291',
                      'lng': '-104.847813',
                      'location': 'E 40TH AVE / N PEORIA WAY',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '560828',
                      'time': '11:46:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '5',
                      'lat': '39.767971',
                      'lng': '-104.84702',
                      'location': '3700 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '561169',
                      'time': '00:35:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.767971',
                      'lng': '-104.84702',
                      'location': 'E 37TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '561235',
                      'time': '22:43:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.769631',
                      'lng': '-104.847027',
                      'location': '3800 N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '561858',
                      'time': '16:07:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.769631',
                      'lng': '-104.847027',
                      'location': 'E 38TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '561887',
                      'time': '02:50:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.769631',
                      'lng': '-104.847027',
                      'location': '3800-BLK N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '562137',
                      'time': '03:16:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.770635',
                      'lng': '-104.894172',
                      'location': '7800 E SMITH RD',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '562268',
                      'time': '14:20:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.770433',
                      'lng': '-104.847031',
                      'location': '3855 N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '562591',
                      'time': '23:12:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '562767',
                      'time': '12:24:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '562770',
                      'time': '23:16:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '562801',
                      'time': '22:48:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '562917',
                      'time': '00:03:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.753584',
                      'lng': '-104.88281',
                      'location': 'E 25TH DR / N AKRON CT',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '563217',
                      'time': '11:15:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.756149',
                      'lng': '-104.89072',
                      'location': 'E 28TH AVE / N CENTRAL PARK BLVD',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '563512',
                      'time': '22:25:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.756151',
                      'lng': '-104.89039',
                      'location': '2800-BLK N CENTRAL PARK BLVD',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '563559',
                      'time': '18:30:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.756151',
                      'lng': '-104.89039',
                      'location': '2800 N CENTRAL PARK BLVD',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '563562',
                      'time': '22:18:01',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.756151',
                      'lng': '-104.89039',
                      'location': '2800-BLK N CENTRAL PARK BLVD',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '563575',
                      'time': '20:07:59',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.758377',
                      'lng': '-104.898955',
                      'location': 'E 29TH PL / N SYRACUSE ST',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '563804',
                      'time': '16:51:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.758245',
                      'lng': '-104.870541',
                      'location': '2901 N FULTON ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '563842',
                      'time': '13:02:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.758245',
                      'lng': '-104.870541',
                      'location': '2900-BLK N FULTON ST',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '564114',
                      'time': '21:46:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.77291',
                      'lng': '-104.847813',
                      'location': 'E 40TH AVE / N PEORIA WAY',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '564320',
                      'time': '23:36:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '564638',
                      'time': '22:23:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '564657',
                      'time': '21:44:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Vehicle Towed',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '564686',
                      'time': '11:47:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Supervisor Cancelled Inc',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': '12100 E 39TH AVE',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '567532',
                      'time': '04:38:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '567979',
                      'time': '01:02:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '568018',
                      'time': '19:06:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.771102',
                      'lng': '-104.847317',
                      'location': 'N PEORIA WAY / E 39TH AVE',
                      'outcome': 'warning',
                      'precinct': '512',
                      'raw_row_number': '568187',
                      'time': '23:31:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.771102',
                      'lng': '-104.847317',
                      'location': 'E 39TH AVE / N PEORIA WAY',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '568279',
                      'time': '18:17:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '568375',
                      'time': '22:32:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.771454',
                      'lng': '-104.848314',
                      'location': '12020 E 39TH AVE',
                      'outcome': 'arrest',
                      'precinct': '512',
                      'raw_row_number': '568508',
                      'time': '02:47:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.771457',
                      'lng': '-104.847436',
                      'location': '3900 N PEORIA WAY',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '568660',
                      'time': '00:39:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.771625',
                      'lng': '-104.861102',
                      'location': '3900-BLK N JOLIET ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '568675',
                      'time': '23:04:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.772841',
                      'lng': '-104.865815',
                      'location': '3992 N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '568880',
                      'time': '00:50:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '568923',
                      'time': '23:06:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '568985',
                      'time': '00:32:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '569512',
                      'time': '21:49:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '569514',
                      'time': '21:52:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '569525',
                      'time': '21:35:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '569555',
                      'time': '22:00:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '569558',
                      'time': '22:09:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '569568',
                      'time': '22:04:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '569578',
                      'time': '21:56:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772923',
                      'lng': '-104.865815',
                      'location': 'E 40TH AVE / N HAVANA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '569596',
                      'time': '23:20:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '571632',
                      'time': '17:21:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.771087',
                      'lng': '-104.847035',
                      'location': 'E 39TH AVE / N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '512',
                      'raw_row_number': '573961',
                      'time': '20:04:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'No Police Needed',
                      'district': '5',
                      'lat': '39.776633',
                      'lng': '-104.877479',
                      'location': 'I70 EB / I270 EB',
                      'outcome': 'NA',
                      'precinct': '512',
                      'raw_row_number': '614984',
                      'time': '12:18:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '521': [{'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.772503',
                      'lng': '-104.829611',
                      'location': 'I70 EB / I225 NB',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '559503',
                      'time': '20:06:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.773765',
                      'lng': '-104.841941',
                      'location': 'I70 WB / I225 NB',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '560454',
                      'time': '22:55:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.772503',
                      'lng': '-104.829611',
                      'location': 'I70 EB / I225 NB',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '564266',
                      'time': '23:10:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.77287',
                      'lng': '-104.833833',
                      'location': 'I70 EB / I225 SB',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '564595',
                      'time': '21:27:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.773929',
                      'lng': '-104.81865',
                      'location': 'E ANDREWS DR / N FREEPORT WAY',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '565448',
                      'time': '22:30:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.774353',
                      'lng': '-104.839968',
                      'location': '12655 E 42ND AVE',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '566542',
                      'time': '23:45:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.774453',
                      'lng': '-104.809892',
                      'location': '4300 N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '570540',
                      'time': '23:57:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.773433',
                      'lng': '-104.820159',
                      'location': '4300 N EUGENE WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '571391',
                      'time': '02:13:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.776805',
                      'lng': '-104.847027',
                      'location': '4411 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '612953',
                      'time': '15:33:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.777234',
                      'lng': '-104.822873',
                      'location': '4451 N DULUTH WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '613419',
                      'time': '23:47:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'File Only',
                      'district': '5',
                      'lat': '39.777403',
                      'lng': '-104.845019',
                      'location': 'E 45TH AVE / N QUENTIN ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '613433',
                      'time': '18:05:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Supervisor Cancelled Inc',
                      'district': '5',
                      'lat': '39.779321',
                      'lng': '-104.839796',
                      'location': 'E ALBROOK DR / N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '613457',
                      'time': '00:07:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '5',
                      'lat': '39.779321',
                      'lng': '-104.839796',
                      'location': 'E ALBROOK DR / N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '613459',
                      'time': '01:51:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': 'E 45TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '613875',
                      'time': '20:18:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.778043',
                      'lng': '-104.824261',
                      'location': 'E 45TH AVE / E ANDREWS DR',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '614268',
                      'time': '19:12:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.778688',
                      'lng': '-104.838246',
                      'location': '13500 E ALBROOK DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '614389',
                      'time': '19:59:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.779321',
                      'lng': '-104.839796',
                      'location': 'N CROWN BLVD / E ALBROOK DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '614504',
                      'time': '00:24:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.777976',
                      'lng': '-104.847031',
                      'location': '4495 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '614606',
                      'time': '01:11:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.776378',
                      'lng': '-104.809905',
                      'location': '4570 N CHAMBERS RD',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '615236',
                      'time': '22:48:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.776378',
                      'lng': '-104.809905',
                      'location': '4570 N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '615238',
                      'time': '23:58:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.776582',
                      'lng': '-104.831501',
                      'location': '4400-BLK N CRYSTAL ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '615371',
                      'time': '15:33:52',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778777',
                      'lng': '-104.832407',
                      'location': 'E 46TH AVE / N CARSON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '615534',
                      'time': '14:53:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed,Par',
                      'district': '5',
                      'lat': '39.778777',
                      'lng': '-104.832407',
                      'location': 'E 46TH AVE / N CARSON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '615563',
                      'time': '19:57:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': 'E 45TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '616203',
                      'time': '20:55:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': 'E 45TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '616208',
                      'time': '01:34:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.778121',
                      'lng': '-104.836432',
                      'location': 'E ALBROOK DR / N AUCKLAND CT',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '616390',
                      'time': '22:11:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': 'E 45TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '616442',
                      'time': '14:40:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': '4500 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '616471',
                      'time': '15:01:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.778792',
                      'lng': '-104.838574',
                      'location': '13400 E ALBROOK DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '616690',
                      'time': '21:35:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Report Made',
                      'district': '5',
                      'lat': '39.778777',
                      'lng': '-104.832407',
                      'location': 'E 46TH AVE / N CARSON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '616722',
                      'time': '22:15:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778777',
                      'lng': '-104.832407',
                      'location': 'E 46TH AVE / N CARSON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '616925',
                      'time': '00:47:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.7766',
                      'lng': '-104.810712',
                      'location': 'E 46TH AVE / N GRANBY WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '616981',
                      'time': '11:37:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-04',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.775041',
                      'lng': '-104.810711',
                      'location': 'E ANDREWS DR / N GRANBY WAY',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '617013',
                      'time': '22:30:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.776378',
                      'lng': '-104.809905',
                      'location': '4570 N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '617484',
                      'time': '00:14:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.776378',
                      'lng': '-104.809905',
                      'location': '4570 N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '617487',
                      'time': '06:00:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.776378',
                      'lng': '-104.809905',
                      'location': '4570 N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '617488',
                      'time': '00:47:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.776378',
                      'lng': '-104.809905',
                      'location': '4570 N CHAMBERS RD',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '617491',
                      'time': '22:22:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': '4500 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '618482',
                      'time': '15:03:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': '4500-BLK N PEORIA ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '618595',
                      'time': '22:47:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': 'E 45TH AVE / N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '618878',
                      'time': '15:15:43',
                      'type': 'pedestrian',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.775049',
                      'lng': '-104.809898',
                      'location': 'N CHAMBERS RD / E ANDREWS DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '619536',
                      'time': '15:53:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': 'E 45TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '619666',
                      'time': '07:02:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.777186',
                      'lng': '-104.833426',
                      'location': 'E ALBROOK DR / N CARSON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '620877',
                      'time': '21:11:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.777186',
                      'lng': '-104.833426',
                      'location': 'N CARSON ST / E ALBROOK DR',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '620879',
                      'time': '05:26:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': '4500 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '621192',
                      'time': '00:40:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.774876',
                      'lng': '-104.809896',
                      'location': '4400 N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '621932',
                      'time': '02:54:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.774876',
                      'lng': '-104.809896',
                      'location': '4400 N CHAMBERS RD',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '621937',
                      'time': '13:21:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778032',
                      'lng': '-104.847031',
                      'location': 'E 45TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '622195',
                      'time': '19:34:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.775645',
                      'lng': '-104.809901',
                      'location': '4500-BLK N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '622372',
                      'time': '04:12:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.78348',
                      'lng': '-104.829583',
                      'location': 'N CARSON ST / E ANDREWS DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '622498',
                      'time': '14:50:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.783828',
                      'lng': '-104.830429',
                      'location': 'E ANDREWS DR / N BLACKHAWK WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '622790',
                      'time': '01:11:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.784334',
                      'lng': '-104.831204',
                      'location': '4900 N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '623358',
                      'time': '23:06:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.784334',
                      'lng': '-104.831204',
                      'location': '4900 N CROWN BLVD',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '623898',
                      'time': '22:20:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.784806',
                      'lng': '-104.840743',
                      'location': 'E ANDREWS DR / N TULSA CT',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '623937',
                      'time': '21:45:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.783315',
                      'lng': '-104.822398',
                      'location': 'E BOLLING DR / N DILLON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '624130',
                      'time': '23:09:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '5',
                      'lat': '39.783315',
                      'lng': '-104.822398',
                      'location': 'E BOLLING DR / N DILLON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '624207',
                      'time': '02:33:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.784191',
                      'lng': '-104.831306',
                      'location': 'N CROWN BLVD / E ANDREWS DR',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '624263',
                      'time': '17:05:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-22',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.78441',
                      'lng': '-104.813527',
                      'location': 'E GATEWAY AVE / N FONTANA CT',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '624737',
                      'time': '17:22:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.782622',
                      'lng': '-104.838283',
                      'location': '12948 E ELK PL',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '625188',
                      'time': '01:39:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': '4701 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '626454',
                      'time': '07:00:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': '4701 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '626455',
                      'time': '14:50:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.783361',
                      'lng': '-104.84702',
                      'location': '4750 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '627599',
                      'time': '01:12:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.782488',
                      'lng': '-104.840387',
                      'location': '4700 N TULSA CT',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '627869',
                      'time': '17:20:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': 'E 47TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '628678',
                      'time': '19:38:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.783228',
                      'lng': '-104.839616',
                      'location': '12941 E 48TH AVE',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '628752',
                      'time': '11:48:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': 'N PEORIA ST / E ALBROOK DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '628997',
                      'time': '23:12:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': '4701 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '629530',
                      'time': '17:13:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': '4701 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '629536',
                      'time': '07:10:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.784354',
                      'lng': '-104.84703',
                      'location': '4800 N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '629671',
                      'time': '07:00:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.784835',
                      'lng': '-104.832866',
                      'location': 'E 47TH AVE / E ANDREWS DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '629719',
                      'time': '19:09:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.784806',
                      'lng': '-104.840743',
                      'location': 'E ANDREWS DR / N TULSA CT',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '629993',
                      'time': '12:21:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.783966',
                      'lng': '-104.842821',
                      'location': '4800-BLK N TROY ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '630048',
                      'time': '15:58:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': '4701 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '630095',
                      'time': '00:41:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.783891',
                      'lng': '-104.811806',
                      'location': 'E GATEWAY AVE / N FRASER WAY',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '631268',
                      'time': '00:31:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': '4701 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '631566',
                      'time': '07:13:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': '4701 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '631861',
                      'time': '16:35:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': 'E 47TH AVE / N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '632097',
                      'time': '18:40:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Report Made',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': '4701 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '632102',
                      'time': '15:45:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.780591',
                      'lng': '-104.84171',
                      'location': 'E ALBROOK DR / N TULSA CT',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '632610',
                      'time': '22:32:32',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.780591',
                      'lng': '-104.84171',
                      'location': 'E ALBROOK DR / N TULSA CT',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '632993',
                      'time': '02:39:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'File Only',
                      'district': '5',
                      'lat': '39.782367',
                      'lng': '-104.846392',
                      'location': '12185 E ALBROOK DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '633299',
                      'time': '19:05:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.782367',
                      'lng': '-104.846392',
                      'location': '12185 E Albrook Dr',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '633301',
                      'time': '17:50:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'File Only',
                      'district': '5',
                      'lat': '39.782367',
                      'lng': '-104.846392',
                      'location': '12185 E ALBROOK DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '633303',
                      'time': '19:56:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.780928',
                      'lng': '-104.836904',
                      'location': 'N CROWN BLVD / N TOPEKA CT',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '633346',
                      'time': '18:38:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.780591',
                      'lng': '-104.84171',
                      'location': 'E ALBROOK DR / N TULSA CT',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '634359',
                      'time': '22:44:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.780773',
                      'lng': '-104.819598',
                      'location': '4700 N EAGLE ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '634957',
                      'time': '16:29:44',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.780357',
                      'lng': '-104.811542',
                      'location': 'E BOLLING DR / N FRASER WAY',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '635055',
                      'time': '23:12:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.78214',
                      'lng': '-104.845604',
                      'location': '12300 E ALBROOK DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '635093',
                      'time': '03:23:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.781787',
                      'lng': '-104.844475',
                      'location': '12465 E ALBROOK DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '635394',
                      'time': '11:03:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.780228',
                      'lng': '-104.825597',
                      'location': 'E ELK DR / E ANDREWS DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '636506',
                      'time': '22:27:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.78214',
                      'lng': '-104.845604',
                      'location': '12300 E ALBROOK DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '636627',
                      'time': '14:37:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.782367',
                      'lng': '-104.846392',
                      'location': '12185 E ALBROOK DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '636914',
                      'time': '18:10:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.781817',
                      'lng': '-104.837661',
                      'location': '5600 N TOPEKA CT',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '638742',
                      'time': '19:50:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.781498',
                      'lng': '-104.843551',
                      'location': '12600 E ALBROOK DR',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '639014',
                      'time': '03:38:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.781509',
                      'lng': '-104.843585',
                      'location': '12595 E ALBROOK DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '639028',
                      'time': '01:30:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.779891',
                      'lng': '-104.840655',
                      'location': '12955 E ALBROOK DR',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '639130',
                      'time': '21:17:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.780346',
                      'lng': '-104.809849',
                      'location': 'N CHAMBERS RD / E BOLLING DR',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '639156',
                      'time': '18:39:06',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.779321',
                      'lng': '-104.839796',
                      'location': 'E ALBROOK DR / N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '639611',
                      'time': '20:57:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.781498',
                      'lng': '-104.843551',
                      'location': '12600 E ALBROOK DR',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '640204',
                      'time': '22:51:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.781498',
                      'lng': '-104.843551',
                      'location': '12600 E ALBROOK DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '640205',
                      'time': '01:38:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.782375',
                      'lng': '-104.846466',
                      'location': '12175 E ALBROOK DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '640798',
                      'time': '18:36:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.779321',
                      'lng': '-104.839796',
                      'location': 'E ALBROOK DR / N CROWN BLVD',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '641103',
                      'time': '23:29:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.781498',
                      'lng': '-104.843551',
                      'location': '12600 E ALBROOK DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '641425',
                      'time': '15:41:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.779321',
                      'lng': '-104.839796',
                      'location': 'N CROWN BLVD / E ALBROOK DR',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '641736',
                      'time': '22:57:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.782375',
                      'lng': '-104.846466',
                      'location': '12175 E ALBROOK DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '642013',
                      'time': '17:17:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.782375',
                      'lng': '-104.846466',
                      'location': '12175 E ALBROOK DR',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '642015',
                      'time': '19:10:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.781869',
                      'lng': '-104.840515',
                      'location': 'E 46TH AVE / N TULSA CT',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '642051',
                      'time': '22:53:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.782388',
                      'lng': '-104.84701',
                      'location': '4701 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '642534',
                      'time': '06:36:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.78348',
                      'lng': '-104.829583',
                      'location': 'E ANDREWS DR / N CARSON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '642809',
                      'time': '01:22:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.78645',
                      'lng': '-104.829739',
                      'location': '5000-BLK N CROWN BLVD',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '642897',
                      'time': '17:24:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.78645',
                      'lng': '-104.829739',
                      'location': 'E 50TH AVE / N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '642979',
                      'time': '01:47:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.787834',
                      'lng': '-104.833089',
                      'location': 'E 50TH AVE / N WORCHESTER ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '643300',
                      'time': '15:26:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.788608',
                      'lng': '-104.840182',
                      'location': 'N TITAN CT / N TITAN WAY',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '643450',
                      'time': '01:03:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.788554',
                      'lng': '-104.828284',
                      'location': 'E 51ST AVE / N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '643709',
                      'time': '16:16:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.789266',
                      'lng': '-104.830019',
                      'location': 'E 51ST AVE / N BILLINGS ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '643827',
                      'time': '23:21:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.789369',
                      'lng': '-104.839003',
                      'location': 'E 51ST AVE / N URSULA ST',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '643852',
                      'time': '17:18:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.790534',
                      'lng': '-104.824476',
                      'location': '14125 E 52ND AVE',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '644288',
                      'time': '07:49:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.790451',
                      'lng': '-104.83245',
                      'location': 'E 51ST AVE / N WHEELING ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '644335',
                      'time': '10:08:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.790534',
                      'lng': '-104.824476',
                      'location': '14125 E 52ND AVE',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '644382',
                      'time': '07:40:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.791057',
                      'lng': '-104.835584',
                      'location': 'E 51ST AVE / N UVALDA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '644600',
                      'time': '12:53:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.791876',
                      'lng': '-104.840206',
                      'location': 'N TUCSON ST / E ELMENDORF PL',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '644621',
                      'time': '14:57:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.78533',
                      'lng': '-104.843256',
                      'location': 'E ANDREWS DR / N SCRANTON CT',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '644744',
                      'time': '04:58:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.78533',
                      'lng': '-104.843256',
                      'location': 'E ANDREWS DR / N SCRANTON CT',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '644869',
                      'time': '19:35:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.785841',
                      'lng': '-104.84491',
                      'location': 'N QUENTIN ST / E ANDREWS DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '644910',
                      'time': '15:11:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.78632',
                      'lng': '-104.847051',
                      'location': 'N PEORIA ST / E ANDREWS DR',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '645090',
                      'time': '01:02:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.786392',
                      'lng': '-104.84638699999999',
                      'location': 'E ANDREWS DR / N QUARI ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '645199',
                      'time': '23:20:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.78632',
                      'lng': '-104.847051',
                      'location': 'E ANDREWS DR / N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '645228',
                      'time': '10:24:00',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.78632',
                      'lng': '-104.847051',
                      'location': 'E ANDREWS DR / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '645229',
                      'time': '01:52:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.788554',
                      'lng': '-104.828284',
                      'location': 'E 51ST AVE / N CROWN BLVD',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '645646',
                      'time': '19:43:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.787868',
                      'lng': '-104.80977',
                      'location': 'E 52ND AVE / N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '645771',
                      'time': '16:43:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.788554',
                      'lng': '-104.828284',
                      'location': 'E 51ST AVE / N CROWN BLVD',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '645791',
                      'time': '21:41:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.789303',
                      'lng': '-104.841999',
                      'location': 'E 51ST AVE / N TROY ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '645905',
                      'time': '08:45:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.789278',
                      'lng': '-104.847087',
                      'location': 'E 51ST AVE / N PEORIA ST',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '645990',
                      'time': '00:09:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Report Made',
                      'district': '5',
                      'lat': '39.789278',
                      'lng': '-104.847087',
                      'location': 'N PEORIA ST / E 51ST AVE',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '645991',
                      'time': '21:38:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.789369',
                      'lng': '-104.839003',
                      'location': 'E 51ST AVE / N URSULA ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '646136',
                      'time': '14:47:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.789369',
                      'lng': '-104.839003',
                      'location': 'E 51ST AVE / N URSULA ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '646298',
                      'time': '14:46:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.789369',
                      'lng': '-104.839003',
                      'location': 'E 51ST AVE / N URSULA ST',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '646311',
                      'time': '00:28:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.789303',
                      'lng': '-104.841999',
                      'location': '5100-BLK N TROY ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '646344',
                      'time': '08:32:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.789303',
                      'lng': '-104.841999',
                      'location': '5100-BLK N TROY ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '646362',
                      'time': '08:47:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.789301',
                      'lng': '-104.820038',
                      'location': 'E 52ND AVE / N SABLE ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '646382',
                      'time': '16:31:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.790665',
                      'lng': '-104.833402',
                      'location': 'E 51ST AVE / N VICTOR WAY',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '646770',
                      'time': '22:14:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.790664',
                      'lng': '-104.824642',
                      'location': 'E 52ND AVE / N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '646971',
                      'time': '10:43:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.791057',
                      'lng': '-104.835584',
                      'location': 'E 51ST AVE / N UVALDA ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '646992',
                      'time': '22:54:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.791057',
                      'lng': '-104.835584',
                      'location': 'E 51ST AVE / N UVALDA ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '647148',
                      'time': '21:04:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.785949',
                      'lng': '-104.818517',
                      'location': 'E GATEWAY AVE / N DURHAM CT',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '647602',
                      'time': '15:04:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.78665',
                      'lng': '-104.820267',
                      'location': '5100-BLK N DEEPHAVEN CT',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '647743',
                      'time': '21:56:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Report Made',
                      'district': '5',
                      'lat': '39.78645',
                      'lng': '-104.829739',
                      'location': '5000 N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '647938',
                      'time': '22:17:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.787599',
                      'lng': '-104.838807',
                      'location': '5000 N TITAN WAY',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '648239',
                      'time': '08:32:59',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.789303',
                      'lng': '-104.841999',
                      'location': 'E 51ST AVE / N TROY ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '648540',
                      'time': '08:16:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.789613',
                      'lng': '-104.830863',
                      'location': 'N XANADU ST / E 51ST AVE',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '648836',
                      'time': '22:30:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.789613',
                      'lng': '-104.830863',
                      'location': 'E 51ST AVE / N XANADU ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '648903',
                      'time': '09:01:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.789613',
                      'lng': '-104.830863',
                      'location': 'E 51ST AVE / N XANADU ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '649031',
                      'time': '21:41:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.787552',
                      'lng': '-104.82542',
                      'location': 'E 51ST AVE / N COLUMBUS WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '649571',
                      'time': '00:22:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.789278',
                      'lng': '-104.847087',
                      'location': 'E 51ST AVE / N PEORIA ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '649701',
                      'time': '04:53:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.785586',
                      'lng': '-104.84408',
                      'location': 'E ANDREWS DR / N SCRANTON ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '649791',
                      'time': '23:58:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.790664',
                      'lng': '-104.824642',
                      'location': 'E 52ND AVE / N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '649885',
                      'time': '09:30:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.786151',
                      'lng': '-104.837016',
                      'location': 'E ANDREWS DR / N URSULA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '649983',
                      'time': '23:00:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.787799',
                      'lng': '-104.847069',
                      'location': '5000 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '650439',
                      'time': '00:34:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.78645',
                      'lng': '-104.829739',
                      'location': '5000 N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '650503',
                      'time': '13:22:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.787037',
                      'lng': '-104.824803',
                      'location': 'E 51ST AVE / E BOLLING DR',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '650619',
                      'time': '14:52:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made,K - Street Check C',
                      'district': '5',
                      'lat': '39.789314',
                      'lng': '-104.841101',
                      'location': 'E 51ST AVE / N TUCSON WAY',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '651079',
                      'time': '01:59:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.789314',
                      'lng': '-104.841101',
                      'location': 'E 51ST AVE / N TUCSON WAY',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '651080',
                      'time': '20:17:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.791644',
                      'lng': '-104.824147',
                      'location': 'E 54TH AVE / N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '651150',
                      'time': '08:44:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.789289',
                      'lng': '-104.844671',
                      'location': 'E 51ST AVE / N QUENTIN ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '651266',
                      'time': '23:18:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.790157',
                      'lng': '-104.823927',
                      'location': 'E 52ND AVE / N CARSON ST',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '651400',
                      'time': '15:51:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.789322',
                      'lng': '-104.84019',
                      'location': 'E 51ST AVE / N TITAN CT',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '651433',
                      'time': '15:37:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.789739',
                      'lng': '-104.824494',
                      'location': '5180 N CARSON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '651439',
                      'time': '19:53:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.790157',
                      'lng': '-104.823927',
                      'location': 'E 52ND AVE / N CARSON ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '651529',
                      'time': '15:20:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.790157',
                      'lng': '-104.818589',
                      'location': '5255 N DEEPHAVEN CT',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '651711',
                      'time': '20:49:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.790552',
                      'lng': '-104.83697',
                      'location': 'E 51ST AVE / N UTOPIA CT',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '651894',
                      'time': '21:28:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '5',
                      'lat': '39.791654',
                      'lng': '-104.828448',
                      'location': 'E ELMENDORF PL / N ATCHISON WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '652203',
                      'time': '00:07:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.789289',
                      'lng': '-104.844671',
                      'location': 'E 51ST AVE / N QUENTIN ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '652245',
                      'time': '09:48:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.785581',
                      'lng': '-104.83836',
                      'location': 'E ANDREWS DR / N TITAN CT',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '652270',
                      'time': '00:33:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.785581',
                      'lng': '-104.83836',
                      'location': 'E ANDREWS DR / N TITAN CT',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '652486',
                      'time': '17:21:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.793923',
                      'lng': '-104.815364',
                      'location': 'E MAXWELL PL / N EAGLE ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '658113',
                      'time': '15:21:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.792273',
                      'lng': '-104.821032',
                      'location': '5500 N CRYSTAL ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '663037',
                      'time': '00:49:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.792458',
                      'lng': '-104.821964',
                      'location': 'N CHANDLER WAY / E MAXWELL PL',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '663127',
                      'time': '10:27:48',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.794591',
                      'lng': '-104.822093',
                      'location': 'N CROWN BLVD / N BLACKHAWK WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '663369',
                      'time': '20:12:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.793496',
                      'lng': '-104.81726',
                      'location': '5508 N SABLE ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '663483',
                      'time': '16:12:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.793695',
                      'lng': '-104.840342',
                      'location': 'E 55TH AVE / N TUCSON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '664155',
                      'time': '17:56:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.793885',
                      'lng': '-104.842556',
                      'location': '5440 N SCRANTON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '664898',
                      'time': '12:36:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.795792',
                      'lng': '-104.847158',
                      'location': '5475 N PEORIA ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '665588',
                      'time': '02:09:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.794791',
                      'lng': '-104.809722',
                      'location': 'N CHAMBERS RD / E MAXWELL PL',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '666000',
                      'time': '13:14:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.795548',
                      'lng': '-104.835655',
                      'location': 'N UVALDA ST / E OLMSTED PL',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '666027',
                      'time': '21:44:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.795617',
                      'lng': '-104.823225',
                      'location': '5564 N BILLINGS ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '666704',
                      'time': '20:24:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.797582',
                      'lng': '-104.822739',
                      'location': 'E RANDOLPH PL / N CARSON WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '667130',
                      'time': '00:47:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.797589',
                      'lng': '-104.821576',
                      'location': '14331 E RANDOLPH PL',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '667137',
                      'time': '19:29:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.785736',
                      'lng': '-104.844001',
                      'location': '4900-BLK N SCRANTON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '667543',
                      'time': '22:33:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.794795',
                      'lng': '-104.836788',
                      'location': '5535 N TULSA WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '667746',
                      'time': '01:32:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.793351',
                      'lng': '-104.826484',
                      'location': 'E MAXWELL PL / N ATCHISON WAY',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '667936',
                      'time': '23:17:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.797635',
                      'lng': '-104.838751',
                      'location': '12901 E RANDOLPH PL',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '668082',
                      'time': '18:44:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.793167',
                      'lng': '-104.82554',
                      'location': 'E MAXWELL PL / N BILLINGS ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '668302',
                      'time': '21:53:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.794247',
                      'lng': '-104.846416',
                      'location': 'E 54TH AVE / N QUARI ST',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '668574',
                      'time': '14:43:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.793464',
                      'lng': '-104.819049',
                      'location': '5500-BLK N CRYSTAL WAY',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '668769',
                      'time': '12:08:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.79042',
                      'lng': '-104.812271',
                      'location': 'E 53RD AVE / N FAIRPLAY ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '668826',
                      'time': '08:13:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.790534',
                      'lng': '-104.824476',
                      'location': '14125 E 52ND AVE',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '668834',
                      'time': '12:17:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.797601',
                      'lng': '-104.835413',
                      'location': 'N UVALDA ST / E RANDOLPH PL',
                      'outcome': 'arrest',
                      'precinct': '521',
                      'raw_row_number': '669299',
                      'time': '01:02:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.792021',
                      'lng': '-104.81144',
                      'location': 'N ALTURA ST / E ELMENDORF PL',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '669309',
                      'time': '20:44:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.791644',
                      'lng': '-104.824147',
                      'location': 'E 54TH AVE / N CROWN BLVD',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '669495',
                      'time': '08:48:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.793351',
                      'lng': '-104.826484',
                      'location': 'E MAXWELL PL / N ATCHISON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '669969',
                      'time': '15:02:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.794703',
                      'lng': '-104.835452',
                      'location': 'N UVALDA ST / E MAXWELL PL',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '670173',
                      'time': '14:42:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.79279',
                      'lng': '-104.822813',
                      'location': '5500-BLK N CARSON ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '670308',
                      'time': '02:40:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.793228',
                      'lng': '-104.835475',
                      'location': 'E 55TH AVE / N UVALDA ST',
                      'outcome': 'citation',
                      'precinct': '521',
                      'raw_row_number': '670323',
                      'time': '21:20:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.797592',
                      'lng': '-104.834187',
                      'location': '13161 E RANDOLPH PL',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '671097',
                      'time': '23:07:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.79755',
                      'lng': '-104.828962',
                      'location': 'N XAPARY WAY / E RANDOLPH PL',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '671652',
                      'time': '10:21:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.797568',
                      'lng': '-104.830744',
                      'location': 'E RANDOLPH PL / N WORCHESTER ST',
                      'outcome': 'NA',
                      'precinct': '521',
                      'raw_row_number': '672283',
                      'time': '15:57:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Vehicle Towed,Warning Issued',
                      'district': '5',
                      'lat': '39.789289',
                      'lng': '-104.844671',
                      'location': 'E 51ST AVE / N QUENTIN ST',
                      'outcome': 'warning',
                      'precinct': '521',
                      'raw_row_number': '672589',
                      'time': '20:43:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'}],
             '522': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.773188',
                      'lng': '-104.809879',
                      'location': 'E 40TH AVE / N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '560134',
                      'time': '18:52:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Report Made',
                      'district': '5',
                      'lat': '39.774014',
                      'lng': '-104.801632',
                      'location': '4255 N KITTREDGE ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '566173',
                      'time': '11:28:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.772827',
                      'lng': '-104.796015',
                      'location': 'E 40TH AVE / N AIRPORT WAY',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '569732',
                      'time': '07:08:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.776681',
                      'lng': '-104.809906',
                      'location': 'E 46TH AVE / N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '613103',
                      'time': '00:35:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'No Police Needed',
                      'district': '5',
                      'lat': '39.776681',
                      'lng': '-104.809906',
                      'location': 'N CHAMBERS RD / E 46TH AVE',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '615451',
                      'time': '09:15:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Detox Van',
                      'district': '5',
                      'lat': '39.775451',
                      'lng': '-104.795077',
                      'location': '4300 N AIRPORT WAY',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '617575',
                      'time': '17:00:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.774876',
                      'lng': '-104.809896',
                      'location': '4400 N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '621933',
                      'time': '02:54:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.774876',
                      'lng': '-104.809896',
                      'location': '4400 N CHAMBERS RD',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '621938',
                      'time': '13:21:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'E GVR BLVD / N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '622577',
                      'time': '22:54:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.783641',
                      'lng': '-104.79138',
                      'location': 'PENA BLVD / E GVR BLVD',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '623388',
                      'time': '18:13:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'E GVR BLVD / N CHAMBERS RD',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '624468',
                      'time': '08:13:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.783719',
                      'lng': '-104.774473',
                      'location': 'E GVR BLVD / N YAMPA ST',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '624615',
                      'time': '22:14:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.783719',
                      'lng': '-104.774473',
                      'location': 'E GVR BLVD / N YAMPA ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '625173',
                      'time': '22:40:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'N CHAMBERS RD / E GATEWAY AVE',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '625267',
                      'time': '00:12:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': '4800 N CHAMBERS RD',
                      'outcome': 'arrest',
                      'precinct': '522',
                      'raw_row_number': '625511',
                      'time': '16:26:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.783698',
                      'lng': '-104.772121',
                      'location': 'E GVR BLVD / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '625659',
                      'time': '10:42:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.783789',
                      'lng': '-104.798918',
                      'location': '16199 E GVR BLVD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '626665',
                      'time': '16:50:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.784635',
                      'lng': '-104.779527',
                      'location': '4800 TELLURIDE ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '626698',
                      'time': '15:35:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.783698',
                      'lng': '-104.772121',
                      'location': 'N TOWER RD / E GVR BLVD',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '627223',
                      'time': '17:31:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.781777',
                      'lng': '-104.772127',
                      'location': 'E 47TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '627364',
                      'time': '23:38:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781777',
                      'lng': '-104.772127',
                      'location': 'E 47TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '627964',
                      'time': '01:48:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'E GVR BLVD / N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '628262',
                      'time': '14:13:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'N CHAMBERS RD / E GVR BLVD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '629434',
                      'time': '09:30:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'GOA',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': '4800-BLK N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '629746',
                      'time': '01:37:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'E GVR BLVD / N CHAMBERS RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '629986',
                      'time': '23:43:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'E GVR BLVD / N CHAMBERS RD',
                      'outcome': 'arrest',
                      'precinct': '522',
                      'raw_row_number': '630567',
                      'time': '17:13:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'N CHAMBERS RD / E GATEWAY AVE',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '631455',
                      'time': '00:46:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'N CHAMBERS RD / E GVR BLVD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '631746',
                      'time': '22:33:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.781889',
                      'lng': '-104.772238',
                      'location': '4709 N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '632618',
                      'time': '22:40:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781777',
                      'lng': '-104.772127',
                      'location': 'E 47TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '633123',
                      'time': '23:47:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781889',
                      'lng': '-104.772238',
                      'location': '4709 N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '633620',
                      'time': '16:15:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781784',
                      'lng': '-104.77447',
                      'location': '4700 N YAMPA ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '635101',
                      'time': '16:20:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'GOA',
                      'district': '5',
                      'lat': '39.781889',
                      'lng': '-104.772238',
                      'location': '4709 N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '635520',
                      'time': '01:19:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.781777',
                      'lng': '-104.772127',
                      'location': 'E 47TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '636961',
                      'time': '00:47:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781777',
                      'lng': '-104.772127',
                      'location': 'E 47TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '636966',
                      'time': '01:41:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781777',
                      'lng': '-104.772127',
                      'location': 'E 47TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '636967',
                      'time': '22:09:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781777',
                      'lng': '-104.772127',
                      'location': 'E 47TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '637150',
                      'time': '00:51:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781889',
                      'lng': '-104.772238',
                      'location': '4709 N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '637407',
                      'time': '00:39:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.777995',
                      'lng': '-104.772073',
                      'location': 'E 45TH AVE / N TOWER RD',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '637956',
                      'time': '09:07:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.781889',
                      'lng': '-104.772238',
                      'location': '4709 N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '641631',
                      'time': '23:07:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.781889',
                      'lng': '-104.772238',
                      'location': '4709 N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '641940',
                      'time': '14:49:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.783756',
                      'lng': '-104.809797',
                      'location': 'E GVR BLVD / N CHAMBERS RD',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '643115',
                      'time': '23:25:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'File Only',
                      'district': '5',
                      'lat': '39.784635',
                      'lng': '-104.779527',
                      'location': '4800 TELLURIDE ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '644214',
                      'time': '15:35:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.786517',
                      'lng': '-104.802039',
                      'location': 'E 51ST AVE / N KITTREDGE ST',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '645458',
                      'time': '20:19:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.790355',
                      'lng': '-104.809753',
                      'location': 'E 53RD AVE / N CHAMBERS RD',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '649861',
                      'time': '23:03:23',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.787392',
                      'lng': '-104.772135',
                      'location': 'E 50TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '650812',
                      'time': '12:56:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Report Made',
                      'district': '5',
                      'lat': '39.78832',
                      'lng': '-104.808823',
                      'location': '5140 N HANNIBAL ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '651296',
                      'time': '11:19:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.790355',
                      'lng': '-104.809753',
                      'location': 'E 53RD AVE / N CHAMBERS RD',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '651660',
                      'time': '15:52:22',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.798393',
                      'lng': '-104.787302',
                      'location': 'PENA BLVD / E 56TH AVE',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '662962',
                      'time': '03:23:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.798434',
                      'lng': '-104.762698',
                      'location': 'E 56TH AVE / N DUNKIRK ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '662965',
                      'time': '00:44:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.798393',
                      'lng': '-104.787302',
                      'location': 'E 56TH AVE / PENA BLVD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '664052',
                      'time': '22:56:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.800106',
                      'lng': '-104.772116',
                      'location': '5700 N TOWER RD',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '664646',
                      'time': '00:15:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '5',
                      'lat': '39.794472',
                      'lng': '-104.803942',
                      'location': 'E MAXWELL PL / N JASPER ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '665506',
                      'time': '22:41:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.825091',
                      'lng': '-104.771817',
                      'location': '7080 N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '665709',
                      'time': '00:06:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Vehicle Towed',
                      'district': '5',
                      'lat': '39.798303',
                      'lng': '-104.772121',
                      'location': 'E 56TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '666126',
                      'time': '03:20:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.798303',
                      'lng': '-104.772121',
                      'location': 'E 56TH AVE / N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '666663',
                      'time': '14:37:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.79613',
                      'lng': '-104.800602',
                      'location': 'E MAXWELL PL / N KITTREDGE ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '667224',
                      'time': '17:06:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.825091',
                      'lng': '-104.771817',
                      'location': '7080 N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '667348',
                      'time': '15:15:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'No Police Needed',
                      'district': '5',
                      'lat': '39.795534',
                      'lng': '-104.796255',
                      'location': 'E MAXWELL PL / N MEMPHIS ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '667601',
                      'time': '09:45:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.795393',
                      'lng': '-104.772148',
                      'location': '5500 N TOWER RD',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '667621',
                      'time': '00:23:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.798434',
                      'lng': '-104.762698',
                      'location': 'E 56TH AVE / N DUNKIRK ST',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '669243',
                      'time': '06:32:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.798434',
                      'lng': '-104.762698',
                      'location': 'E 56TH AVE / N DUNKIRK ST',
                      'outcome': 'arrest',
                      'precinct': '522',
                      'raw_row_number': '669247',
                      'time': '00:54:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.820056',
                      'lng': '-104.774343',
                      'location': 'E 68TH AVE / N YAMPA ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '669255',
                      'time': '15:57:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.794666',
                      'lng': '-104.806569',
                      'location': 'E MAXWELL PL / N HELENA CT',
                      'outcome': 'arrest',
                      'precinct': '522',
                      'raw_row_number': '669768',
                      'time': '00:07:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.795754',
                      'lng': '-104.796859',
                      'location': 'E MAXWELL PL / N LEWISTON CT',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '669848',
                      'time': '08:43:16',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'File Only',
                      'district': '5',
                      'lat': '39.820056',
                      'lng': '-104.774343',
                      'location': 'E 68TH AVE / N YAMPA ST',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '671062',
                      'time': '15:24:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.838889',
                      'lng': '-104.77192',
                      'location': '7900-BLK N TOWER RD',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '671666',
                      'time': '04:00:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.838889',
                      'lng': '-104.77192',
                      'location': '7900 N TOWER RD',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '671667',
                      'time': '04:46:27',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.838889',
                      'lng': '-104.77192',
                      'location': '7900-BLK N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '522',
                      'raw_row_number': '671668',
                      'time': '04:10:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.838889',
                      'lng': '-104.77192',
                      'location': '7900-BLK N TOWER RD',
                      'outcome': 'warning',
                      'precinct': '522',
                      'raw_row_number': '671669',
                      'time': '04:13:13',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.838889',
                      'lng': '-104.77192',
                      'location': '7900-BLK N TOWER RD',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '671670',
                      'time': '04:29:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.800106',
                      'lng': '-104.772116',
                      'location': '5700 N TOWER RD',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '671881',
                      'time': '23:44:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.798303',
                      'lng': '-104.772121',
                      'location': 'E 56TH AVE / N TOWER RD',
                      'outcome': 'citation',
                      'precinct': '522',
                      'raw_row_number': '672025',
                      'time': '00:03:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '523': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '5',
                      'lat': '39.770295',
                      'lng': '-104.758159',
                      'location': '19599 E 40TH AVE',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '553446',
                      'time': '23:54:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.772228',
                      'lng': '-104.757963',
                      'location': 'E 41ST AVE / N FLANDERS ST',
                      'outcome': 'arrest',
                      'precinct': '523',
                      'raw_row_number': '568920',
                      'time': '02:00:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.771089',
                      'lng': '-104.74523',
                      'location': 'E 40TH AVE / N LISBON ST',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '569016',
                      'time': '22:25:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.771408',
                      'lng': '-104.762311',
                      'location': '19300 E 40TH AVE',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '569356',
                      'time': '03:11:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.774045',
                      'lng': '-104.759824',
                      'location': 'E 41ST PL / N ENSENADA ST',
                      'outcome': 'arrest',
                      'precinct': '523',
                      'raw_row_number': '570509',
                      'time': '11:29:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.773127',
                      'lng': '-104.76002',
                      'location': 'E 41ST AVE / N ENSENADA ST',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '572207',
                      'time': '11:46:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.775773',
                      'lng': '-104.76005',
                      'location': 'N ENSENADA ST / N DUNKIRK WAY',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '612650',
                      'time': '09:18:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.777111',
                      'lng': '-104.763416',
                      'location': 'E 45TH AVE / N DANUBE WAY',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '615772',
                      'time': '12:46:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.777969',
                      'lng': '-104.767315',
                      'location': 'E 45TH AVE / N BISCAY ST',
                      'outcome': 'warning',
                      'precinct': '523',
                      'raw_row_number': '616545',
                      'time': '17:04:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.776204',
                      'lng': '-104.77079',
                      'location': 'E KELLY PL / N ANDES CT',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '617509',
                      'time': '09:26:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.777272',
                      'lng': '-104.754004',
                      'location': 'N HIMALAYA RD / E MITCHELL PL',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '619169',
                      'time': '21:42:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.777973',
                      'lng': '-104.769015',
                      'location': 'E 45TH AVE / N ARGONNE ST',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '619341',
                      'time': '21:36:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.774377',
                      'lng': '-104.748124',
                      'location': 'E 42ND AVE / N KIRK ST',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '619421',
                      'time': '02:01:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.778505',
                      'lng': '-104.754964',
                      'location': '4600-BLK N HIMALAYA RD',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '619439',
                      'time': '10:45:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-18',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.777984',
                      'lng': '-104.770788',
                      'location': 'E 45TH AVE / N ANDES ST',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '621438',
                      'time': '09:27:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.774658',
                      'lng': '-104.769785',
                      'location': 'E 43RD AVE / N ANDES WAY',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '622161',
                      'time': '10:14:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.782906',
                      'lng': '-104.755409',
                      'location': 'E GVR BLVD / N HIMALAYA RD',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '622772',
                      'time': '22:59:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.783644',
                      'lng': '-104.766623',
                      'location': '18650 E GVR BLVD',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '622942',
                      'time': '01:29:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.783728',
                      'lng': '-104.764902',
                      'location': 'E GVR BLVD / N ARGONNE ST',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '625184',
                      'time': '22:17:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.783776',
                      'lng': '-104.768698',
                      'location': '18605 E GVR BLVD',
                      'outcome': 'arrest',
                      'precinct': '523',
                      'raw_row_number': '627616',
                      'time': '10:35:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.78364',
                      'lng': '-104.768301',
                      'location': '18600 E GVR BLVD',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '628950',
                      'time': '21:02:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '5',
                      'lat': '39.783729',
                      'lng': '-104.761144',
                      'location': 'N FLANDERS WAY / E GVR BLVD',
                      'outcome': 'arrest',
                      'precinct': '523',
                      'raw_row_number': '629061',
                      'time': '12:47:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.782906',
                      'lng': '-104.755409',
                      'location': 'E GVR BLVD / N HIMALAYA RD',
                      'outcome': 'warning',
                      'precinct': '523',
                      'raw_row_number': '629080',
                      'time': '23:50:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.783776',
                      'lng': '-104.768698',
                      'location': '18605 E GVR BLVD',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '629325',
                      'time': '03:10:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.782906',
                      'lng': '-104.755409',
                      'location': 'E GVR BLVD / N HIMALAYA RD',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '629636',
                      'time': '23:17:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.783776',
                      'lng': '-104.768698',
                      'location': '18605 E GVR BLVD',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '629913',
                      'time': '01:46:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.783438',
                      'lng': '-104.764901',
                      'location': '4775 N ARGONNE ST',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '630249',
                      'time': '10:07:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.783674',
                      'lng': '-104.737695',
                      'location': 'E 49TH AVE / N ODESSA ST',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '630545',
                      'time': '07:38:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.783729',
                      'lng': '-104.761144',
                      'location': 'E GVR BLVD / N FLANDERS WAY',
                      'outcome': 'warning',
                      'precinct': '523',
                      'raw_row_number': '631357',
                      'time': '22:58:37',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.782906',
                      'lng': '-104.755409',
                      'location': 'E GVR BLVD / N HIMALAYA RD',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '631371',
                      'time': '22:41:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.783438',
                      'lng': '-104.764901',
                      'location': '4775 N ARGONNE ST',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '631989',
                      'time': '00:19:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '5',
                      'lat': '39.779924',
                      'lng': '-104.772013',
                      'location': '4600 N TOWER RD',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '637098',
                      'time': '08:03:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.779925',
                      'lng': '-104.735567',
                      'location': '4593 N PERTH ST',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '637107',
                      'time': '11:45:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '5',
                      'lat': '39.77874',
                      'lng': '-104.755305',
                      'location': 'E 46TH AVE / N HIMALAYA RD',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '639246',
                      'time': '23:19:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.774836',
                      'lng': '-104.753403',
                      'location': 'N HIMALAYA RD / E 42ND AVE',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '640538',
                      'time': '12:13:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.781593',
                      'lng': '-104.756152',
                      'location': 'E 47TH AVE / N HIMALAYA RD',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '640921',
                      'time': '10:32:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '5',
                      'lat': '39.792505',
                      'lng': '-104.75879',
                      'location': 'E 54TH AVE / N ESPANA ST',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '663644',
                      'time': '02:17:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'L - Clearance',
                      'district': '5',
                      'lat': '39.795033',
                      'lng': '-104.752047',
                      'location': 'E MAXWELL PL / N IRELAND ST',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '665260',
                      'time': '00:39:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.795286',
                      'lng': '-104.757101',
                      'location': 'E MAXWELL PL / N GENOA ST',
                      'outcome': 'warning',
                      'precinct': '523',
                      'raw_row_number': '665643',
                      'time': '16:47:17',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.797853',
                      'lng': '-104.757969',
                      'location': 'E RANDOLPH PL / N FUNDY ST',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '667976',
                      'time': '10:35:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.794838',
                      'lng': '-104.762733',
                      'location': 'N DUNKIRK ST / E MAXWELL PL',
                      'outcome': 'warning',
                      'precinct': '523',
                      'raw_row_number': '668987',
                      'time': '20:55:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '5',
                      'lat': '39.796738',
                      'lng': '-104.762052',
                      'location': 'N ENSENADA ST / E ROBINS DR',
                      'outcome': 'NA',
                      'precinct': '523',
                      'raw_row_number': '669650',
                      'time': '12:25:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '5',
                      'lat': '39.794838',
                      'lng': '-104.762733',
                      'location': 'E MAXWELL PL / N DUNKIRK ST',
                      'outcome': 'citation',
                      'precinct': '523',
                      'raw_row_number': '669835',
                      'time': '12:12:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Warning Issued',
                      'district': '5',
                      'lat': '39.794786',
                      'lng': '-104.749367',
                      'location': 'E 55TH AVE / E MAXWELL PL',
                      'outcome': 'warning',
                      'precinct': '523',
                      'raw_row_number': '672463',
                      'time': '20:37:09',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'}],
             '611': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.729095',
                      'lng': '-104.987404',
                      'location': '800-BLK N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '204208',
                      'time': '01:34:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.732045',
                      'lng': '-104.987403',
                      'location': 'E 10TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '221183',
                      'time': '01:07:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.730454',
                      'lng': '-104.987403',
                      'location': '900-BLK N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '224898',
                      'time': '02:12:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.732045',
                      'lng': '-104.987403',
                      'location': 'W 10TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '225499',
                      'time': '23:19:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.732045',
                      'lng': '-104.987403',
                      'location': '1000-BLK N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '226068',
                      'time': '23:52:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.732045',
                      'lng': '-104.987403',
                      'location': '1000 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '226088',
                      'time': '00:48:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.731306',
                      'lng': '-104.991663',
                      'location': 'N CHEROKEE ST / N SPEER BLVD',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '227825',
                      'time': '17:56:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.732049',
                      'lng': '-104.992196',
                      'location': '1000 N SPEER BLVD',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '228122',
                      'time': '23:44:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.730454',
                      'lng': '-104.987403',
                      'location': 'W 9TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '228217',
                      'time': '22:10:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.730454',
                      'lng': '-104.987403',
                      'location': '900-BLK N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '228218',
                      'time': '00:52:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.732045',
                      'lng': '-104.987403',
                      'location': 'N BROADWAY ST / E 10TH AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '229102',
                      'time': '00:31:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.730454',
                      'lng': '-104.987403',
                      'location': '900-BLK N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '229433',
                      'time': '00:57:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.732045',
                      'lng': '-104.987403',
                      'location': 'E 10TH AVE / N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '229697',
                      'time': '00:31:29',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.732045',
                      'lng': '-104.987403',
                      'location': '1000-BLK N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '231001',
                      'time': '16:41:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.732045',
                      'lng': '-104.987403',
                      'location': '1001 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '234263',
                      'time': '02:09:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.732045',
                      'lng': '-104.987403',
                      'location': '1001 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '234267',
                      'time': '23:22:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.735256',
                      'lng': '-104.990247',
                      'location': 'W 12TH AVE / N BANNOCK ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '240461',
                      'time': '15:30:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.735256',
                      'lng': '-104.990247',
                      'location': 'W 12TH AVE / N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '240462',
                      'time': '02:34:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738461',
                      'lng': '-104.996896',
                      'location': 'W 14TH AVE / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '242099',
                      'time': '13:08:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.737349',
                      'lng': '-104.991651',
                      'location': '1331 N CHEROKEE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '244208',
                      'time': '02:37:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.737349',
                      'lng': '-104.991651',
                      'location': '1331 N CHEROKEE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '244596',
                      'time': '21:15:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.734344',
                      'lng': '-104.98741',
                      'location': '1135 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '247466',
                      'time': '04:02:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.734344',
                      'lng': '-104.98741',
                      'location': '1135 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '247478',
                      'time': '01:19:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.734632',
                      'lng': '-104.991651',
                      'location': '1155 N CHEROKEE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '247826',
                      'time': '00:59:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.735259',
                      'lng': '-104.991652',
                      'location': '1200 N CHEROKEE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '247979',
                      'time': '09:59:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.73685',
                      'lng': '-104.987394',
                      'location': '1300 N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '248377',
                      'time': '01:14:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.73685',
                      'lng': '-104.987394',
                      'location': '1300 N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '248959',
                      'time': '09:13:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.737349',
                      'lng': '-104.991651',
                      'location': '1331 N CHEROKEE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '249825',
                      'time': '20:16:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.737349',
                      'lng': '-104.991651',
                      'location': '1331 N CHEROKEE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '250418',
                      'time': '23:58:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.732057',
                      'lng': '-104.988852',
                      'location': '1000-BLK-BROADWAY N ACOMA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '250824',
                      'time': '02:24:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.735263',
                      'lng': '-104.994141',
                      'location': '1200-BLK N ELATI ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '252268',
                      'time': '21:31:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.735263',
                      'lng': '-104.994141',
                      'location': 'W 12TH AVE / N ELATI ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '252270',
                      'time': '11:46:42',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.735263',
                      'lng': '-104.994141',
                      'location': '1200 N ELATI ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '252283',
                      'time': '03:40:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.735258',
                      'lng': '-104.992942',
                      'location': 'W 12TH AVE / N DELAWARE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '252347',
                      'time': '03:13:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.73526',
                      'lng': '-104.987401',
                      'location': 'E 12TH AVE / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '252951',
                      'time': '11:57:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.736858',
                      'lng': '-104.995308',
                      'location': '600-BLK W 13TH AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '253140',
                      'time': '23:19:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.736857',
                      'lng': '-104.992939',
                      'location': '1300 N DELAWARE ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '253499',
                      'time': '23:20:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.736843',
                      'lng': '-104.988814',
                      'location': '100 W 13TH AVE',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '254089',
                      'time': '03:09:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.735268',
                      'lng': '-104.994558',
                      'location': 'N SPEER BLVD / W 12TH AVE',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '254377',
                      'time': '21:58:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.736856',
                      'lng': '-104.994121',
                      'location': 'W 13TH AVE / N ELATI ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '255007',
                      'time': '09:57:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.732057',
                      'lng': '-104.988852',
                      'location': '1000 N ACOMA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '257988',
                      'time': '01:54:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.733867',
                      'lng': '-104.993515',
                      'location': 'W 11TH AVE / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '260027',
                      'time': '15:14:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'L - Clearance',
                      'district': '6',
                      'lat': '39.733867',
                      'lng': '-104.993515',
                      'location': 'W 11TH AVE / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '260638',
                      'time': '09:31:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740068',
                      'lng': '-104.991654',
                      'location': 'W COLFAX AVE / COURT PL',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '261264',
                      'time': '02:12:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740068',
                      'lng': '-104.991654',
                      'location': 'W COLFAX AVE / N CHEROKEE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '261425',
                      'time': '13:09:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740068',
                      'lng': '-104.991654',
                      'location': '300 W COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '261847',
                      'time': '02:33:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740075',
                      'lng': '-104.992917',
                      'location': '400 W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '263175',
                      'time': '12:04:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740015',
                      'lng': '-104.994009',
                      'location': '490 W COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '263369',
                      'time': '02:18:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740015',
                      'lng': '-104.994009',
                      'location': '490 W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '264770',
                      'time': '16:48:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.740084',
                      'lng': '-104.995273',
                      'location': 'W COLFAX AVE / N FOX ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '265229',
                      'time': '02:14:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': 'W 14TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '266039',
                      'time': '16:01:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': '1400 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '266643',
                      'time': '23:59:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738451',
                      'lng': '-104.992932',
                      'location': '1400 N DELAWARE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '266905',
                      'time': '13:35:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738461',
                      'lng': '-104.996896',
                      'location': '1400 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '268416',
                      'time': '00:21:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738461',
                      'lng': '-104.996896',
                      'location': 'W 14TH AVE / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '268419',
                      'time': '09:59:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': '1400-BLK N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '269054',
                      'time': '23:54:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740015',
                      'lng': '-104.994009',
                      'location': '490 W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '269458',
                      'time': '04:17:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.740015',
                      'lng': '-104.994009',
                      'location': '490 W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '269467',
                      'time': '01:15:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738445',
                      'lng': '-104.991655',
                      'location': '1400 N CHEROKEE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '270545',
                      'time': '11:22:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.737349',
                      'lng': '-104.991651',
                      'location': '1331 N CHEROKEE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '271304',
                      'time': '23:34:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738449',
                      'lng': '-104.990241',
                      'location': 'W 14TH AVE / N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '271618',
                      'time': '00:32:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': 'E 14TH AVE / N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '272400',
                      'time': '23:28:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': 'W 14TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '273654',
                      'time': '15:54:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': 'W 14TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '274366',
                      'time': '15:43:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': '1400-BLK N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '275028',
                      'time': '02:29:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': 'E 14TH AVE / N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '275107',
                      'time': '02:38:04',
                      'type': 'pedestrian',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': '1400 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '275108',
                      'time': '04:29:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': '1400 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '275109',
                      'time': '21:23:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738432',
                      'lng': '-104.987413',
                      'location': 'N BROADWAY ST / W 14TH AVE',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '275122',
                      'time': '23:07:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738449',
                      'lng': '-104.990241',
                      'location': 'W 14TH AVE / N BANNOCK ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '275650',
                      'time': '18:28:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738453',
                      'lng': '-104.996487',
                      'location': 'W 14TH AVE / N GALAPAGO ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '276480',
                      'time': '19:36:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.737349',
                      'lng': '-104.991651',
                      'location': '1331 N CHEROKEE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '277557',
                      'time': '22:28:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.737349',
                      'lng': '-104.991651',
                      'location': '1331 N CHEROKEE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '277570',
                      'time': '15:40:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738453',
                      'lng': '-104.996487',
                      'location': '1400-BLK N GALAPAGO ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '278296',
                      'time': '12:01:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.737349',
                      'lng': '-104.991651',
                      'location': '1331 N CHEROKEE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '278470',
                      'time': '13:35:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.737888',
                      'lng': '-104.996486',
                      'location': '1300 N GALAPAGO ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '279535',
                      'time': '04:47:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'E COLFAX AVE / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '281192',
                      'time': '20:00:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'E COLFAX AVE / N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '281258',
                      'time': '05:52:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740103',
                      'lng': '-104.997022',
                      'location': 'W COLFAX AVE / WELTON ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '286045',
                      'time': '01:42:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'E COLFAX AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '287128',
                      'time': '13:18:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'E COLFAX AVE / N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '288114',
                      'time': '17:20:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'E COLFAX AVE / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '288120',
                      'time': '18:19:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740103',
                      'lng': '-104.997022',
                      'location': 'WELTON ST / W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '289928',
                      'time': '01:14:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740046',
                      'lng': '-104.997127',
                      'location': '740 W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '291189',
                      'time': '01:18:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74007',
                      'lng': '-104.990361',
                      'location': '14TH ST / N BANNOCK ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '291787',
                      'time': '20:47:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'E COLFAX AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '292163',
                      'time': '20:49:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'W COLFAX AVE / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '293574',
                      'time': '00:47:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'N BROADWAY ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '294698',
                      'time': '12:18:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'E COLFAX AVE / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '295266',
                      'time': '14:02:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740061',
                      'lng': '-104.987391',
                      'location': 'E COLFAX AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '295507',
                      'time': '20:29:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.740023',
                      'lng': '-104.998014',
                      'location': 'N SPEER BLVD / W COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '298246',
                      'time': '23:35:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740023',
                      'lng': '-104.998014',
                      'location': 'W COLFAX AVE / N SPEER BLVD',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '298250',
                      'time': '10:13:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740046',
                      'lng': '-104.997127',
                      'location': '740 W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '300600',
                      'time': '00:02:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740084',
                      'lng': '-104.995273',
                      'location': '1200 GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '300808',
                      'time': '20:38:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740179',
                      'lng': '-104.998126',
                      'location': '1500-BLK N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '302392',
                      'time': '03:26:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'X - Exchanged Info',
                      'district': '6',
                      'lat': '39.740179',
                      'lng': '-104.998126',
                      'location': '1500 N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '302396',
                      'time': '11:47:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740638',
                      'lng': '-104.991116',
                      'location': '14TH ST / COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '314604',
                      'time': '11:00:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740638',
                      'lng': '-104.991116',
                      'location': '1400-BLK COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '316300',
                      'time': '18:19:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.741574',
                      'lng': '-104.989903',
                      'location': '1500 COURT PL',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '316464',
                      'time': '11:55:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741472',
                      'lng': '-104.987397',
                      'location': 'N BROADWAY ST / 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '316782',
                      'time': '16:18:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741574',
                      'lng': '-104.989903',
                      'location': '15TH ST / COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '318203',
                      'time': '16:04:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74091',
                      'lng': '-104.989015',
                      'location': 'CLEVELAND PL / 15TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '319166',
                      'time': '14:20:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741574',
                      'lng': '-104.989903',
                      'location': '1500 COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '322318',
                      'time': '13:18:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.740274',
                      'lng': '-104.988102',
                      'location': 'CHEYENNE PL / W COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '326681',
                      'time': '04:19:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743177',
                      'lng': '-104.989575',
                      'location': '16TH ST / TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '333885',
                      'time': '21:08:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '16TH ST / GLENARM PL',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '334740',
                      'time': '21:01:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.743358',
                      'lng': '-104.987376',
                      'location': 'N BROADWAY ST / E 17TH AVE',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '335151',
                      'time': '02:05:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '1600 GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '336939',
                      'time': '22:18:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '1600-BLK-TREMONT GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '337474',
                      'time': '23:18:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '500 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '338010',
                      'time': '22:44:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '1600-BLK GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '338341',
                      'time': '06:41:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.743927',
                      'lng': '-104.992982',
                      'location': '650 15TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '338518',
                      'time': '22:20:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.743177',
                      'lng': '-104.989575',
                      'location': '1600-GLENARM TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '339568',
                      'time': '21:53:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.742314',
                      'lng': '-104.999336',
                      'location': 'CHAMPA ST / N SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '340182',
                      'time': '09:39:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.742314',
                      'lng': '-104.999336',
                      'location': 'N SPEER BLVD / CHAMPA ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '340805',
                      'time': '09:32:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '500-BLK 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '341604',
                      'time': '20:04:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.74376',
                      'lng': '-104.996785',
                      'location': '1325 STOUT ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '341668',
                      'time': '10:11:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.743358',
                      'lng': '-104.987376',
                      'location': '1700 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '341842',
                      'time': '03:32:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.743177',
                      'lng': '-104.989575',
                      'location': 'TREMONT PL / 16TH ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '342000',
                      'time': '13:31:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743583',
                      'lng': '-104.99252',
                      'location': '15TH ST / WELTON ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '342438',
                      'time': '13:17:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.742735',
                      'lng': '-104.987398',
                      'location': '1670 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '342529',
                      'time': '00:21:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.743583',
                      'lng': '-104.99252',
                      'location': '1500-1600 WELTON ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '343049',
                      'time': '10:02:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743583',
                      'lng': '-104.99252',
                      'location': '15TH ST / WELTON ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '343625',
                      'time': '10:51:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741574',
                      'lng': '-104.989903',
                      'location': '15TH ST / COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '343893',
                      'time': '01:57:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741574',
                      'lng': '-104.989903',
                      'location': '1500 COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '343908',
                      'time': '15:29:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74091',
                      'lng': '-104.989015',
                      'location': '1500-BLK CLEVELAND PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '344031',
                      'time': '19:01:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.742505',
                      'lng': '-104.988711',
                      'location': '16TH ST / COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '344745',
                      'time': '23:53:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.742505',
                      'lng': '-104.988711',
                      'location': '16TH ST / COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '344749',
                      'time': '11:46:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.742505',
                      'lng': '-104.988711',
                      'location': '16TH ST / COURT PL',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '344752',
                      'time': '22:57:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.742913',
                      'lng': '-104.991653',
                      'location': '15TH ST / GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '346149',
                      'time': '20:13:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.742652',
                      'lng': '-104.993719',
                      'location': '1400 WELTON ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '346399',
                      'time': '11:19:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'L - Clearance',
                      'district': '6',
                      'lat': '39.741979',
                      'lng': '-104.992858',
                      'location': '14TH ST / GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '346801',
                      'time': '03:38:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.742913',
                      'lng': '-104.991653',
                      'location': '15TH ST / GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '346860',
                      'time': '18:33:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741979',
                      'lng': '-104.992858',
                      'location': '14TH ST / GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '346884',
                      'time': '23:34:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.742913',
                      'lng': '-104.991653',
                      'location': '15TH ST / GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '347008',
                      'time': '18:22:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.741822',
                      'lng': '-104.987833',
                      'location': '16TH ST / CLEVELAND PL',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '347240',
                      'time': '12:11:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.743177',
                      'lng': '-104.989575',
                      'location': '1600 TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '347453',
                      'time': '00:37:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.742314',
                      'lng': '-104.999336',
                      'location': 'N SPEER BLVD / CHAMPA ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '347688',
                      'time': '03:25:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74131',
                      'lng': '-104.991987',
                      'location': '1400-BLK TREMONT PL',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '348984',
                      'time': '02:56:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741979',
                      'lng': '-104.992858',
                      'location': '14TH ST / GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '349463',
                      'time': '20:28:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.741574',
                      'lng': '-104.989903',
                      'location': '15TH ST / COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '350270',
                      'time': '14:14:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74091',
                      'lng': '-104.989015',
                      'location': '15TH ST / CLEVELAND PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '350388',
                      'time': '23:48:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741822',
                      'lng': '-104.987833',
                      'location': '16TH ST / CLEVELAND PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '350589',
                      'time': '17:02:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74131',
                      'lng': '-104.991987',
                      'location': '1400 TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '351116',
                      'time': '23:18:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741574',
                      'lng': '-104.989903',
                      'location': '1500 COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '351500',
                      'time': '21:45:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741822',
                      'lng': '-104.987833',
                      'location': '200 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '351834',
                      'time': '09:44:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '6',
                      'lat': '39.742281',
                      'lng': '-104.990736',
                      'location': '15TH ST / TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '351972',
                      'time': '23:43:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.742281',
                      'lng': '-104.990736',
                      'location': '1500-BLK TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '351973',
                      'time': '14:31:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741945',
                      'lng': '-104.989429',
                      'location': '1550 COURT PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '352474',
                      'time': '18:59:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'GOA',
                      'district': '6',
                      'lat': '39.741822',
                      'lng': '-104.987833',
                      'location': '200 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '353314',
                      'time': '11:44:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741822',
                      'lng': '-104.987833',
                      'location': '200-BLK 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '353320',
                      'time': '21:19:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.741979',
                      'lng': '-104.992858',
                      'location': '14TH ST / GLENARM PL',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '353419',
                      'time': '20:03:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.741403',
                      'lng': '-104.998839',
                      'location': 'N SPEER BLVD / STOUT ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '353576',
                      'time': '02:44:28',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.742913',
                      'lng': '-104.991653',
                      'location': '15TH ST / GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '354000',
                      'time': '03:01:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.745196',
                      'lng': '-104.99221',
                      'location': '16TH ST / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '354738',
                      'time': '18:22:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744506',
                      'lng': '-104.991321',
                      'location': '16TH ST / WELTON ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '355473',
                      'time': '11:25:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '500 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '355813',
                      'time': '21:26:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '500 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '355879',
                      'time': '16:51:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '16TH ST / GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '355880',
                      'time': '20:27:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '500 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '355930',
                      'time': '20:40:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.743838',
                      'lng': '-104.99044',
                      'location': '500 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '355931',
                      'time': '17:31:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745196',
                      'lng': '-104.99221',
                      'location': '16TH ST / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '356121',
                      'time': '11:49:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.743979',
                      'lng': '-104.995473',
                      'location': '1400-BLK STOUT ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '356336',
                      'time': '05:40:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.743336',
                      'lng': '-104.994598',
                      'location': '700-BLK 14TH ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '356910',
                      'time': '16:43:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.743336',
                      'lng': '-104.994598',
                      'location': '1400 CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '356926',
                      'time': '23:56:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744506',
                      'lng': '-104.991321',
                      'location': '600 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '357981',
                      'time': '13:40:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.746533',
                      'lng': '-104.993945',
                      'location': '1600-BLK CHAMPA ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '359483',
                      'time': '19:44:24',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.746768',
                      'lng': '-104.991848',
                      'location': '800-BLK 17TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '360189',
                      'time': '14:39:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.747445',
                      'lng': '-104.992719',
                      'location': '17TH ST / CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '360920',
                      'time': '15:49:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.747205',
                      'lng': '-104.994803',
                      'location': '16TH ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '361223',
                      'time': '20:09:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74773',
                      'lng': '-104.990653',
                      'location': '18TH ST / STOUT ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '362251',
                      'time': '20:07:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.746244',
                      'lng': '-104.996026',
                      'location': '1500-BLK CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '362562',
                      'time': '23:59:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.746533',
                      'lng': '-104.993945',
                      'location': '900-BLK 16TH ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '363036',
                      'time': '16:22:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.746244',
                      'lng': '-104.996026',
                      'location': '15TH ST / CURTIS ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '363282',
                      'time': '00:24:33',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747877',
                      'lng': '-104.995692',
                      'location': '16TH ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '363477',
                      'time': '12:48:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.746533',
                      'lng': '-104.993945',
                      'location': '16TH ST / CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '363808',
                      'time': '16:42:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.746561',
                      'lng': '-104.993981',
                      'location': '904 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '363956',
                      'time': '20:13:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.746974',
                      'lng': '-104.987397',
                      'location': '19TH ST / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '364062',
                      'time': '16:01:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.747205',
                      'lng': '-104.994803',
                      'location': '1000-BLK 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '364065',
                      'time': '11:56:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': '1 - Alarm RP On Scene',
                      'district': '6',
                      'lat': '39.746533',
                      'lng': '-104.993945',
                      'location': '1600-BLK CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '364260',
                      'time': '18:32:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747678',
                      'lng': '-104.992425',
                      'location': '1725 CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '364814',
                      'time': '23:27:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747877',
                      'lng': '-104.995692',
                      'location': '1600-BLK ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '364903',
                      'time': '00:36:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.746561',
                      'lng': '-104.993981',
                      'location': '904 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '365128',
                      'time': '22:28:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.745196',
                      'lng': '-104.99221',
                      'location': '16TH ST / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '365889',
                      'time': '17:11:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.746533',
                      'lng': '-104.993945',
                      'location': '900-BLK 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '366008',
                      'time': '20:44:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.746938',
                      'lng': '-104.996877',
                      'location': '15TH ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '366090',
                      'time': '08:32:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.746533',
                      'lng': '-104.993945',
                      'location': '16TH ST / CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '366302',
                      'time': '00:20:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.746561',
                      'lng': '-104.993981',
                      'location': '904 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '366360',
                      'time': '21:19:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'L - Clearance',
                      'district': '6',
                      'lat': '39.747205',
                      'lng': '-104.994803',
                      'location': '16TH ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '366460',
                      'time': '01:09:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.746193',
                      'lng': '-104.987408',
                      'location': 'N BROADWAY ST / GLENARM PL',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '367105',
                      'time': '13:32:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.747358',
                      'lng': '-104.9874',
                      'location': 'N BROADWAY ST / WELTON ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '367174',
                      'time': '16:30:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.746533',
                      'lng': '-104.993945',
                      'location': '16TH ST / CHAMPA ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '367242',
                      'time': '20:55:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.747205',
                      'lng': '-104.994803',
                      'location': '16TH ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '367398',
                      'time': '00:05:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.747877',
                      'lng': '-104.995692',
                      'location': '1600-BLK ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '367677',
                      'time': '23:31:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.746938',
                      'lng': '-104.996877',
                      'location': '15TH ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '367976',
                      'time': '01:24:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.747205',
                      'lng': '-104.994803',
                      'location': '1000-BLK 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '368351',
                      'time': '13:16:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.745593',
                      'lng': '-104.995152',
                      'location': '1500 CHAMPA ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '369837',
                      'time': '19:27:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.745593',
                      'lng': '-104.995152',
                      'location': '1500 CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '369976',
                      'time': '20:56:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745529',
                      'lng': '-104.992648',
                      'location': '750 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '370231',
                      'time': '09:58:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74586',
                      'lng': '-104.993084',
                      'location': '1600-BLK STOUT ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '370592',
                      'time': '17:03:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.745996',
                      'lng': '-104.993259',
                      'location': '820 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '371495',
                      'time': '18:22:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745867',
                      'lng': '-104.993093',
                      'location': '801 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '371702',
                      'time': '00:07:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74586',
                      'lng': '-104.993084',
                      'location': '16TH ST / STOUT ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '371835',
                      'time': '18:47:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745996',
                      'lng': '-104.993259',
                      'location': '820 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '371988',
                      'time': '17:46:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.746119',
                      'lng': '-104.990967',
                      'location': '1700-BLK CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '372676',
                      'time': '21:47:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.744032',
                      'lng': '-104.99019',
                      'location': '1621 GLENARM PL',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '372713',
                      'time': '19:39:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.744506',
                      'lng': '-104.991321',
                      'location': '1600-TREMONT WELTON ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '373724',
                      'time': '14:50:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.744506',
                      'lng': '-104.991321',
                      'location': '16TH ST / WELTON ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '373845',
                      'time': '16:57:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744617',
                      'lng': '-104.996287',
                      'location': '891 14TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '373862',
                      'time': '22:14:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744666',
                      'lng': '-104.99635',
                      'location': '1400-BLK CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '373880',
                      'time': '00:56:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.744916',
                      'lng': '-104.994256',
                      'location': '15TH ST / STOUT ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '373945',
                      'time': '12:46:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.744916',
                      'lng': '-104.994256',
                      'location': '1500-BLK STOUT ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '374338',
                      'time': '09:11:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744916',
                      'lng': '-104.994256',
                      'location': '15TH ST / STOUT ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '374652',
                      'time': '07:27:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.744916',
                      'lng': '-104.994256',
                      'location': '800-BLK 15TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '374809',
                      'time': '19:09:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'GOA',
                      'district': '6',
                      'lat': '39.744916',
                      'lng': '-104.994256',
                      'location': '1500 STOUT ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '374819',
                      'time': '13:47:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.745063',
                      'lng': '-104.987407',
                      'location': '1800 N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '376314',
                      'time': '01:16:22',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.745063',
                      'lng': '-104.987407',
                      'location': '18TH ST / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '376334',
                      'time': '23:05:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745063',
                      'lng': '-104.987407',
                      'location': '1800-BLK N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '376360',
                      'time': '10:21:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.745196',
                      'lng': '-104.99221',
                      'location': '1600 CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '376545',
                      'time': '12:01:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.745196',
                      'lng': '-104.99221',
                      'location': '700-BLK 16TH ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '377126',
                      'time': '14:34:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745196',
                      'lng': '-104.99221',
                      'location': '700 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '377184',
                      'time': '13:10:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745196',
                      'lng': '-104.99221',
                      'location': '700 16TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '377344',
                      'time': '14:01:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745593',
                      'lng': '-104.995152',
                      'location': '1500-BLK-STOUT CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '377350',
                      'time': '21:02:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.745196',
                      'lng': '-104.99221',
                      'location': '16TH ST / CALIFORNIA ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '377748',
                      'time': '10:46:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745196',
                      'lng': '-104.99221',
                      'location': '1600-BLK CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '377791',
                      'time': '10:45:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.748913',
                      'lng': '-104.987397',
                      'location': 'N BROADWAY ST / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '377873',
                      'time': '22:07:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.748913',
                      'lng': '-104.987397',
                      'location': '20TH ST / N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '378698',
                      'time': '03:31:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.75067',
                      'lng': '-104.992036',
                      'location': '1900-BLK ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '378752',
                      'time': '23:26:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.75067',
                      'lng': '-104.992036',
                      'location': '1900 ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '380559',
                      'time': '00:48:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.749731',
                      'lng': '-104.993235',
                      'location': '18TH ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '381259',
                      'time': '15:48:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.750006',
                      'lng': '-104.991196',
                      'location': '19TH ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '382071',
                      'time': '19:39:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.750006',
                      'lng': '-104.991196',
                      'location': '1900 CURTIS ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '382651',
                      'time': '04:20:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.750006',
                      'lng': '-104.991196',
                      'location': '19TH ST / CURTIS ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '382658',
                      'time': '04:39:21',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.748789',
                      'lng': '-104.994448',
                      'location': '1701 ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '382850',
                      'time': '23:20:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.748789',
                      'lng': '-104.994448',
                      'location': '17TH ST / ARAPAHOE ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '382863',
                      'time': '00:43:55',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.747066',
                      'lng': '-104.989784',
                      'location': '18TH ST / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '383701',
                      'time': '11:42:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.748789',
                      'lng': '-104.994448',
                      'location': '17TH ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '383947',
                      'time': '11:14:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'L - Clearance',
                      'district': '6',
                      'lat': '39.749323',
                      'lng': '-104.990311',
                      'location': '1900 CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '384051',
                      'time': '02:05:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.749323',
                      'lng': '-104.990311',
                      'location': '19TH ST / CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '385268',
                      'time': '02:46:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.748962',
                      'lng': '-104.994677',
                      'location': '1125 17TH ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '385844',
                      'time': '15:36:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.750254',
                      'lng': '-104.989101',
                      'location': '2000-BLK CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '387305',
                      'time': '09:18:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.748789',
                      'lng': '-104.994448',
                      'location': '1700 ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '387608',
                      'time': '23:59:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.751581',
                      'lng': '-104.987384',
                      'location': 'N BROADWAY ST / CHAMPA ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '389191',
                      'time': '02:48:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.75253',
                      'lng': '-104.989628',
                      'location': '2100 ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '389442',
                      'time': '00:30:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.75253',
                      'lng': '-104.989628',
                      'location': '2100 ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '389448',
                      'time': '23:49:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.75253',
                      'lng': '-104.989628',
                      'location': '21ST ST / ARAPAHOE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '389450',
                      'time': '23:41:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.751863',
                      'lng': '-104.988774',
                      'location': '2100 CURTIS ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '389810',
                      'time': '04:24:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.751581',
                      'lng': '-104.987384',
                      'location': 'N BROADWAY ST / CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '391772',
                      'time': '12:58:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.753479',
                      'lng': '-104.988422',
                      'location': '22ND ST / ARAPAHOE ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '392066',
                      'time': '01:24:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.75253',
                      'lng': '-104.989628',
                      'location': '2100 ARAPAHOE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '392261',
                      'time': '03:24:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.75159',
                      'lng': '-104.990831',
                      'location': '2000-BLK-CURTIS ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '393729',
                      'time': '04:47:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.75253',
                      'lng': '-104.989628',
                      'location': '21ST ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '395198',
                      'time': '00:35:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.75253',
                      'lng': '-104.989628',
                      'location': '21ST ST / ARAPAHOE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '395200',
                      'time': '00:53:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.750942',
                      'lng': '-104.989976',
                      'location': '2000-BLK CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '397396',
                      'time': '01:45:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.75159',
                      'lng': '-104.990831',
                      'location': '2000 ARAPAHOE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '398278',
                      'time': '03:40:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.751863',
                      'lng': '-104.988774',
                      'location': '2100-BLK-ARAP CURTIS ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '398631',
                      'time': '05:03:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.75253',
                      'lng': '-104.989628',
                      'location': '21ST ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '399433',
                      'time': '23:49:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.748789',
                      'lng': '-104.994448',
                      'location': '1700-BLK ARAPAHOE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '401031',
                      'time': '14:19:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': '2300-CURTIS ARAPAHOE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '402146',
                      'time': '01:52:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': 'PARK AVE W / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '403271',
                      'time': '01:00:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': 'ARAPAHOE ST / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '403291',
                      'time': '18:09:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': '2300 ARAPAHOE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '403293',
                      'time': '10:45:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': '2300-BLK ARAPAHOE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '406670',
                      'time': '20:26:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-02',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': '2300-BLK ARAPAHOE ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '410651',
                      'time': '19:39:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': '1100-BLK PARK AVE W',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '410653',
                      'time': '10:59:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Supervisor Cancelled Inc',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': 'N BROADWAY ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '410928',
                      'time': '00:13:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': '2300-BLK ARAPAHOE ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '411233',
                      'time': '02:37:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.753479',
                      'lng': '-104.988422',
                      'location': '22ND ST / ARAPAHOE ST',
                      'outcome': 'warning',
                      'precinct': '611',
                      'raw_row_number': '413165',
                      'time': '19:54:10',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'No Police Needed',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': 'PARK AVE W / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '413797',
                      'time': '19:58:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'L - Clearance',
                      'district': '6',
                      'lat': '39.754421',
                      'lng': '-104.987377',
                      'location': 'PARK AVE W / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '413893',
                      'time': '00:04:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.753479',
                      'lng': '-104.988422',
                      'location': '2200-BLK ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '414080',
                      'time': '00:08:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.753479',
                      'lng': '-104.988422',
                      'location': '22ND ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '415418',
                      'time': '19:48:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.752795',
                      'lng': '-104.987544',
                      'location': '22ND ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '416031',
                      'time': '23:19:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.752795',
                      'lng': '-104.987544',
                      'location': '1000-BLK 22ND ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '416048',
                      'time': '01:49:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.753479',
                      'lng': '-104.988422',
                      'location': '1100-BLK 22ND ST',
                      'outcome': 'citation',
                      'precinct': '611',
                      'raw_row_number': '416905',
                      'time': '20:49:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.753479',
                      'lng': '-104.988422',
                      'location': '22ND ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '419359',
                      'time': '19:10:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.753479',
                      'lng': '-104.988422',
                      'location': '22ND ST / ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '611',
                      'raw_row_number': '419982',
                      'time': '01:05:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753479',
                      'lng': '-104.988422',
                      'location': '2200-BLK-CURTIS ARAPAHOE ST',
                      'outcome': 'arrest',
                      'precinct': '611',
                      'raw_row_number': '419999',
                      'time': '02:51:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'}],
             '612': [{'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.746685',
                      'lng': '-105.000805',
                      'location': 'LARIMER ST / N SPEER BLVD',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '360126',
                      'time': '01:39:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.747602',
                      'lng': '-104.997748',
                      'location': '15TH ST / LAWRENCE ST',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '361609',
                      'time': '03:14:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.746666',
                      'lng': '-104.998959',
                      'location': '1400 LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '369770',
                      'time': '01:54:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.745754',
                      'lng': '-105.000149',
                      'location': 'N SPEER BLVD / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '370740',
                      'time': '03:52:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.747987',
                      'lng': '-105.000699',
                      'location': '1400-BLK MARKET ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '377994',
                      'time': '01:29:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747987',
                      'lng': '-105.000699',
                      'location': '14TH ST / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '378013',
                      'time': '02:12:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74853',
                      'lng': '-104.996553',
                      'location': '1200-BLK 16TH ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '378091',
                      'time': '14:32:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.750555',
                      'lng': '-104.999186',
                      'location': '16TH ST / BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '378210',
                      'time': '10:46:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.750824',
                      'lng': '-104.99707',
                      'location': '1700 MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '378218',
                      'time': '01:57:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.750408',
                      'lng': '-104.994127',
                      'location': '18TH ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '378583',
                      'time': '01:08:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.750408',
                      'lng': '-104.994127',
                      'location': '1800 LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '378929',
                      'time': '01:53:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.750408',
                      'lng': '-104.994127',
                      'location': '18TH ST / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '378947',
                      'time': '01:40:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.750408',
                      'lng': '-104.994127',
                      'location': '18TH ST / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '379011',
                      'time': '02:41:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.749459',
                      'lng': '-104.995334',
                      'location': '1200 17th St',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '380035',
                      'time': '20:06:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.749608',
                      'lng': '-105.000359',
                      'location': '15TH ST / BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '380134',
                      'time': '02:06:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.749608',
                      'lng': '-105.000359',
                      'location': '15TH ST / BLAKE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '380646',
                      'time': '01:03:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.749877',
                      'lng': '-104.998317',
                      'location': 'MARKET ST / 16TH ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '381286',
                      'time': '01:14:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.749877',
                      'lng': '-104.998317',
                      'location': '16TH ST / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '381461',
                      'time': '19:04:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.749877',
                      'lng': '-104.998317',
                      'location': '16TH ST / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '381462',
                      'time': '23:23:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.749877',
                      'lng': '-104.998317',
                      'location': '16TH ST / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '381673',
                      'time': '20:51:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.748287',
                      'lng': '-104.998641',
                      'location': '15TH ST / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '382403',
                      'time': '00:13:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.748813',
                      'lng': '-105.0014',
                      'location': '1400-BLK BLAKE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '382719',
                      'time': '00:24:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74853',
                      'lng': '-104.996553',
                      'location': '16TH ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '383583',
                      'time': '19:57:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.748287',
                      'lng': '-104.998641',
                      'location': '15TH ST / LARIMER ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '383810',
                      'time': '23:02:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.748939',
                      'lng': '-104.999489',
                      'location': '15TH ST / MARKET ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '384892',
                      'time': '01:35:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.748939',
                      'lng': '-104.999489',
                      'location': '1500 MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '384908',
                      'time': '01:01:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.750555',
                      'lng': '-104.999186',
                      'location': '1600 BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '385225',
                      'time': '01:56:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.748939',
                      'lng': '-104.999489',
                      'location': '1500 MARKET ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '385604',
                      'time': '04:49:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'L - Clearance',
                      'district': '6',
                      'lat': '39.748939',
                      'lng': '-104.999489',
                      'location': '15TH ST / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '386906',
                      'time': '21:18:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.749877',
                      'lng': '-104.998317',
                      'location': '1600 MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '387508',
                      'time': '02:20:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.749877',
                      'lng': '-104.998317',
                      'location': '16TH ST / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '387509',
                      'time': '21:50:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.751087',
                      'lng': '-104.995025',
                      'location': 'LARIMER ST / 18TH ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '388662',
                      'time': '00:46:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.75134',
                      'lng': '-104.992928',
                      'location': '19TH ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '388813',
                      'time': '00:41:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100 LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '389561',
                      'time': '01:17:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '2200 LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '390229',
                      'time': '05:05:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '390820',
                      'time': '14:12:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '391353',
                      'time': '02:48:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '2200-BLK LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '391521',
                      'time': '20:01:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.752946',
                      'lng': '-104.992597',
                      'location': '2000 LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '392575',
                      'time': '18:44:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.752946',
                      'lng': '-104.992597',
                      'location': '20TH ST / LARIMER ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '392656',
                      'time': '02:37:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.751087',
                      'lng': '-104.995025',
                      'location': '18TH ST / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '394433',
                      'time': '00:49:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.752681',
                      'lng': '-104.994671',
                      'location': '1900 MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '398239',
                      'time': '22:43:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.751751',
                      'lng': '-104.995868',
                      'location': '18TH ST / MARKET ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '398810',
                      'time': '02:44:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755621',
                      'lng': '-104.987392',
                      'location': 'LAWRENCE ST / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '402315',
                      'time': '23:55:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755621',
                      'lng': '-104.987392',
                      'location': 'N BROADWAY ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '402332',
                      'time': '00:02:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '402602',
                      'time': '23:35:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '402603',
                      'time': '00:55:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '402995',
                      'time': '02:03:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '403093',
                      'time': '11:06:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '403100',
                      'time': '20:14:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '403481',
                      'time': '19:08:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.754335',
                      'lng': '-104.994272',
                      'location': '20TH ST / BLAKE ST',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '403828',
                      'time': '00:26:35',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.75481',
                      'lng': '-104.990173',
                      'location': '22ND ST / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '403836',
                      'time': '21:41:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.756011',
                      'lng': '-104.98689',
                      'location': '24TH ST / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '404148',
                      'time': '03:40:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.756011',
                      'lng': '-104.98689',
                      'location': '24TH ST / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '404215',
                      'time': '00:02:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.756011',
                      'lng': '-104.98689',
                      'location': '24TH ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '404224',
                      'time': '22:44:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.756011',
                      'lng': '-104.98689',
                      'location': '2400-BLK LAWRENCE ST',
                      'outcome': 'warning',
                      'precinct': '612',
                      'raw_row_number': '404226',
                      'time': '02:03:58',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.756011',
                      'lng': '-104.98689',
                      'location': 'LAWRENCE ST / 24TH ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '404285',
                      'time': '02:03:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.756011',
                      'lng': '-104.98689',
                      'location': 'LAWRENCE ST / 24TH ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '404304',
                      'time': '23:33:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '405142',
                      'time': '23:43:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.756388',
                      'lng': '-104.987389',
                      'location': 'N BROADWAY ST / 24TH ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '405517',
                      'time': '01:24:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755234',
                      'lng': '-104.993137',
                      'location': '2100-BLK BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '405886',
                      'time': '14:14:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '406227',
                      'time': '18:33:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '406230',
                      'time': '18:48:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '406855',
                      'time': '22:00:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '406864',
                      'time': '00:11:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.754335',
                      'lng': '-104.994272',
                      'location': 'BLAKE ST / 20TH ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '407518',
                      'time': '00:25:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '408087',
                      'time': '01:48:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '408346',
                      'time': '01:34:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754743',
                      'lng': '-105.002407',
                      'location': '17TH ST / CHESTNUT PL',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '408415',
                      'time': '22:47:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '408641',
                      'time': '13:19:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'LAWRENCE ST / PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '409280',
                      'time': '00:04:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'LAWRENCE ST / PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '409281',
                      'time': '00:25:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-17',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'LAWRENCE ST / PARK AVE W',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '409580',
                      'time': '00:48:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.75481',
                      'lng': '-104.990173',
                      'location': '22ND ST / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '410336',
                      'time': '00:15:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.754335',
                      'lng': '-104.994272',
                      'location': '20TH ST / BLAKE ST',
                      'outcome': 'warning',
                      'precinct': '612',
                      'raw_row_number': '410584',
                      'time': '22:28:57',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754994',
                      'lng': '-104.995148',
                      'location': '20TH ST / WAZEE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '410683',
                      'time': '04:08:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '410795',
                      'time': '19:59:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '411037',
                      'time': '02:19:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '411658',
                      'time': '01:08:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.753527',
                      'lng': '-104.995292',
                      'location': '1919 BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '411769',
                      'time': '00:02:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '411973',
                      'time': '18:54:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '412241',
                      'time': '23:35:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100-BLK LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '412249',
                      'time': '22:26:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100 LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '412256',
                      'time': '05:40:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': 'LAWRENCE ST / 21ST ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '412261',
                      'time': '23:58:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.753888',
                      'lng': '-104.991382',
                      'location': '2100-LAWRENCE LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '412303',
                      'time': '21:20:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.753961',
                      'lng': '-105.003407',
                      'location': '1601 CHESTNUT PL',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '412322',
                      'time': '18:08:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.752946',
                      'lng': '-104.992597',
                      'location': '20TH ST / LARIMER ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '412414',
                      'time': '02:03:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.754335',
                      'lng': '-104.994272',
                      'location': '20TH ST / BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '413360',
                      'time': '00:35:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.754335',
                      'lng': '-104.994272',
                      'location': '20TH ST / BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '413380',
                      'time': '02:28:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '413521',
                      'time': '03:36:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '413522',
                      'time': '17:32:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '2200 LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '413524',
                      'time': '02:34:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '2200-BLK LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '413525',
                      'time': '18:03:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.752946',
                      'lng': '-104.992597',
                      'location': '2000 LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '413739',
                      'time': '11:34:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.75481',
                      'lng': '-104.990173',
                      'location': '22ND ST / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '413941',
                      'time': '02:44:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.75481',
                      'lng': '-104.990173',
                      'location': '22ND ST / LARIMER ST',
                      'outcome': 'warning',
                      'precinct': '612',
                      'raw_row_number': '414012',
                      'time': '10:00:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '414073',
                      'time': '01:39:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.752946',
                      'lng': '-104.992597',
                      'location': '20TH ST / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '415353',
                      'time': '00:16:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.752946',
                      'lng': '-104.992597',
                      'location': '20TH ST / LARIMER ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '415362',
                      'time': '02:14:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100 LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '415582',
                      'time': '02:57:55',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '416303',
                      'time': '03:11:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': '1200 PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '416386',
                      'time': '23:26:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '416500',
                      'time': '23:02:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753888',
                      'lng': '-104.991382',
                      'location': '2100 LARIMER ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '416715',
                      'time': '23:04:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '416799',
                      'time': '00:30:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '416847',
                      'time': '01:53:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100 LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '417377',
                      'time': '22:08:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '2200-BLK LAWRENCE ST',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '417414',
                      'time': '03:06:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100-BLK LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '417689',
                      'time': '00:00:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '418072',
                      'time': '00:08:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '418361',
                      'time': '22:31:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-11',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100 LAWRENCE ST',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '418622',
                      'time': '06:11:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '419028',
                      'time': '02:19:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '2200 LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '419243',
                      'time': '23:48:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.753888',
                      'lng': '-104.991382',
                      'location': '2100 LARIMER ST',
                      'outcome': 'warning',
                      'precinct': '612',
                      'raw_row_number': '419500',
                      'time': '01:03:30',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100-ARAP LAWRENCE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '419824',
                      'time': '00:30:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '2200-BLK-ARAPAHOE LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '419856',
                      'time': '19:57:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.753426',
                      'lng': '-104.99542',
                      'location': '1909 BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '419902',
                      'time': '02:14:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '22ND ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '420532',
                      'time': '19:11:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '2200 LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '420533',
                      'time': '20:24:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100-BLK LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '420761',
                      'time': '14:49:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.753212',
                      'lng': '-104.990516',
                      'location': '2100 LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '421048',
                      'time': '02:27:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753426',
                      'lng': '-104.99542',
                      'location': '1909 BLAKE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '421132',
                      'time': '00:51:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753426',
                      'lng': '-104.99542',
                      'location': '1909 BLAKE ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '421150',
                      'time': '01:35:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.753345',
                      'lng': '-104.995522',
                      'location': '19TH ST / BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '421407',
                      'time': '00:43:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754143',
                      'lng': '-104.9893',
                      'location': '2200-BLK LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '421467',
                      'time': '22:35:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '422112',
                      'time': '23:53:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '422138',
                      'time': '20:01:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': '2300-BLK LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '422139',
                      'time': '18:25:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': '1300-BLK PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '422149',
                      'time': '18:08:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '422193',
                      'time': '20:15:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'LARIMER ST / PARK AVE W',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '422202',
                      'time': '02:01:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '422204',
                      'time': '23:46:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '422225',
                      'time': '23:44:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '422226',
                      'time': '02:48:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.756165',
                      'lng': '-104.991911',
                      'location': '22ND ST / BLAKE ST',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '422834',
                      'time': '14:14:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.756165',
                      'lng': '-104.991911',
                      'location': '22ND ST / BLAKE ST',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '422899',
                      'time': '11:32:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.756388',
                      'lng': '-104.987389',
                      'location': '2400 N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '612',
                      'raw_row_number': '423399',
                      'time': '04:08:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.756388',
                      'lng': '-104.987389',
                      'location': 'N BROADWAY ST / 24TH ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '423402',
                      'time': '23:48:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.756451',
                      'lng': '-104.989829',
                      'location': 'PARK AVE W / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '423550',
                      'time': '08:24:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.756451',
                      'lng': '-104.989829',
                      'location': 'PARK AVE W / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '423551',
                      'time': '00:44:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.75668',
                      'lng': '-104.987773',
                      'location': '24TH ST / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '423832',
                      'time': '01:22:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.757007',
                      'lng': '-104.98736',
                      'location': 'LARIMER ST / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '424491',
                      'time': '03:56:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755077',
                      'lng': '-104.988101',
                      'location': 'PARK AVE W / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '425362',
                      'time': '07:01:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.756451',
                      'lng': '-104.989829',
                      'location': 'PARK AVE W / MARKET ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '426241',
                      'time': '10:10:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.755466',
                      'lng': '-105.004498',
                      'location': '1634 LITTLE RAVEN ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '426485',
                      'time': '19:52:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.758822',
                      'lng': '-105.002665',
                      'location': '1900 LITTLE RAVEN ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '427407',
                      'time': '19:24:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.759397',
                      'lng': '-104.987742',
                      'location': 'N BROADWAY ST / BLAKE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '428765',
                      'time': '10:10:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.75759',
                      'lng': '-104.997076',
                      'location': '21ST ST / DELGANY ST',
                      'outcome': 'warning',
                      'precinct': '612',
                      'raw_row_number': '429472',
                      'time': '19:16:04',
                      'type': 'pedestrian',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.757749',
                      'lng': '-104.998575',
                      'location': '20TH ST / CHESTNUT PL',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '431234',
                      'time': '01:45:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.757749',
                      'lng': '-104.998575',
                      'location': '20TH ST / CHESTNUT PL',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '431237',
                      'time': '23:56:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.758039',
                      'lng': '-104.989492',
                      'location': '2400 BLAKE ST',
                      'outcome': 'warning',
                      'precinct': '612',
                      'raw_row_number': '431671',
                      'time': '16:48:11',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755621',
                      'lng': '-104.987392',
                      'location': 'LAWRENCE ST / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '432545',
                      'time': '23:44:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '433003',
                      'time': '17:25:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.755764',
                      'lng': '-104.988955',
                      'location': 'PARK AVE W / LARIMER ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '433013',
                      'time': '22:35:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.756011',
                      'lng': '-104.98689',
                      'location': '24TH ST / LAWRENCE ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '433987',
                      'time': '02:05:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.759321',
                      'lng': '-104.993697',
                      'location': 'PARK AVE W / WEWATTA ST',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '435370',
                      'time': '14:29:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.759346',
                      'lng': '-105.003144',
                      'location': '2205 19TH ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '435755',
                      'time': '19:56:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.759321',
                      'lng': '-104.993697',
                      'location': 'PARK AVE W / WEWATTA ST',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '435951',
                      'time': '12:30:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.759321',
                      'lng': '-104.993697',
                      'location': 'WEWATTA ST / PARK AVE W',
                      'outcome': 'citation',
                      'precinct': '612',
                      'raw_row_number': '435964',
                      'time': '14:57:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.759321',
                      'lng': '-104.993697',
                      'location': 'PARK AVE W / WEWATTA ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '435990',
                      'time': '11:34:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.759321',
                      'lng': '-104.993697',
                      'location': 'WEWATTA ST / PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '436005',
                      'time': '12:12:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.757749',
                      'lng': '-104.998575',
                      'location': '20TH ST / CHESTNUT PL',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '438455',
                      'time': '01:41:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.757749',
                      'lng': '-104.998575',
                      'location': '20TH ST / CHESTNUT PL',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '438839',
                      'time': '02:33:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.757749',
                      'lng': '-104.998575',
                      'location': '20TH ST / CHESTNUT PL',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '438955',
                      'time': '01:09:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.758319',
                      'lng': '-104.987445',
                      'location': 'N BROADWAY ST / WALNUT ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '440549',
                      'time': '04:04:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.758319',
                      'lng': '-104.987445',
                      'location': '2500 WALNUT ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '440994',
                      'time': '01:19:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.758319',
                      'lng': '-104.987445',
                      'location': '2500 WALNUT ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '441015',
                      'time': '02:12:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made,T - Citation Issue',
                      'district': '6',
                      'lat': '39.759672',
                      'lng': '-105.001778',
                      'location': '20TH ST / LITTLE RAVEN ST',
                      'outcome': 'arrest',
                      'precinct': '612',
                      'raw_row_number': '446653',
                      'time': '00:52:33',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.759672',
                      'lng': '-105.001778',
                      'location': 'LITTLE RAVEN ST / 20TH ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '451985',
                      'time': '20:47:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Y - Broadcast',
                      'district': '6',
                      'lat': '39.7644',
                      'lng': '-104.986636',
                      'location': 'N BRIGHTON BLVD / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '612',
                      'raw_row_number': '465499',
                      'time': '15:43:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.765043',
                      'lng': '-104.985567',
                      'location': '2900-BLK N BRIGHTON BLVD',
                      'outcome': 'warning',
                      'precinct': '612',
                      'raw_row_number': '479737',
                      'time': '20:22:26',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'}],
             '621': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': 'E COLFAX AVE / N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '261283',
                      'time': '22:36:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': 'E COLFAX AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '261333',
                      'time': '01:42:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '261334',
                      'time': '22:03:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': 'E COLFAX AVE / N PEARL ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '261379',
                      'time': '02:53:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981054',
                      'location': '505 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '261800',
                      'time': '21:09:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981054',
                      'location': '505 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '261807',
                      'time': '19:20:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': 'E COLFAX AVE / N WASHINGTON ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '261904',
                      'time': '00:37:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': '700 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '261906',
                      'time': '03:42:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '262018',
                      'time': '02:01:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '262100',
                      'time': '20:06:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.977543',
                      'location': '808 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '262447',
                      'time': '19:33:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.977543',
                      'location': '808 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '262453',
                      'time': '00:31:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '262812',
                      'time': '01:03:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '500-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '262813',
                      'time': '00:02:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': '1500-BLK N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '262991',
                      'time': '16:12:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': 'E COLFAX AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263004',
                      'time': '20:09:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.977543',
                      'location': '808 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263005',
                      'time': '01:23:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.976476',
                      'location': 'E COLFAX AVE / N EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263110',
                      'time': '00:15:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': '1500 N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263289',
                      'time': '05:45:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '1500-BLK-LOGAN N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263407',
                      'time': '22:22:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Y - Broadcast',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '500-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263418',
                      'time': '19:31:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '500-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263419',
                      'time': '23:36:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263428',
                      'time': '18:11:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-23',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '500 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '263429',
                      'time': '22:06:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '263432',
                      'time': '00:39:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '263442',
                      'time': '22:52:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '263461',
                      'time': '22:35:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263463',
                      'time': '17:12:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': '600 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263496',
                      'time': '01:06:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'No Police Needed',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '263863',
                      'time': '06:40:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '1500 N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '264057',
                      'time': '22:23:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': '700 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '264098',
                      'time': '19:26:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '264432',
                      'time': '21:29:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '264433',
                      'time': '14:09:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': 'E COLFAX AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '264545',
                      'time': '19:38:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981054',
                      'location': '505 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '264814',
                      'time': '01:38:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '264837',
                      'time': '22:48:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '1500 N PENNSYLVANIA ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '264949',
                      'time': '20:17:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '500 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '265014',
                      'time': '02:26:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.976476',
                      'location': 'E COLFAX AVE / N EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '265303',
                      'time': '00:19:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '265318',
                      'time': '22:26:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981054',
                      'location': '505 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '265381',
                      'time': '23:41:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': '1500-PENN N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '265390',
                      'time': '22:39:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '265413',
                      'time': '00:39:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981054',
                      'location': '505 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '265457',
                      'time': '20:47:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': 'E COLFAX AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '266926',
                      'time': '19:32:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '266932',
                      'time': '02:47:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.976476',
                      'location': '900 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '268225',
                      'time': '02:05:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': 'E COLFAX AVE / N WASHINGTON ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '281325',
                      'time': '10:57:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74006',
                      'lng': '-104.984856',
                      'location': '200-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '284838',
                      'time': '15:32:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740018',
                      'lng': '-104.974151',
                      'location': 'E COLFAX AVE / N CORONA ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '284869',
                      'time': '18:12:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': '1500 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '285016',
                      'time': '01:46:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.975322',
                      'location': '1000-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '286207',
                      'time': '19:54:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740047',
                      'lng': '-104.983584',
                      'location': '1500-BLK N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '286375',
                      'time': '22:23:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74004',
                      'lng': '-104.983339',
                      'location': '320 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '286989',
                      'time': '00:04:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74004',
                      'lng': '-104.983339',
                      'location': '320 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '286990',
                      'time': '19:43:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': 'N WASHINGTON ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '287217',
                      'time': '00:44:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '6',
                      'lat': '39.740021',
                      'lng': '-104.974792',
                      'location': 'E COLFAX AVE / N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '287454',
                      'time': '22:41:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-08',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.74006',
                      'lng': '-104.984856',
                      'location': '200 E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '287653',
                      'time': '06:22:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Vehicle Towed',
                      'district': '6',
                      'lat': '39.740018',
                      'lng': '-104.974151',
                      'location': '1100 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '287728',
                      'time': '02:31:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': '1500 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '287889',
                      'time': '22:39:20',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740063',
                      'lng': '-104.986135',
                      'location': 'E COLFAX AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '288205',
                      'time': '00:31:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': '1500-BLK N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '288427',
                      'time': '02:03:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '288464',
                      'time': '23:08:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.975322',
                      'location': '1000 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '288562',
                      'time': '00:05:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740047',
                      'lng': '-104.983584',
                      'location': 'E COLFAX AVE / N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '288760',
                      'time': '00:11:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740047',
                      'lng': '-104.983584',
                      'location': 'E COLFAX AVE / N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '289053',
                      'time': '23:24:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': '1500 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '289271',
                      'time': '00:00:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': 'E COLFAX AVE / N WASHINGTON ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '289273',
                      'time': '00:53:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': '1500 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '289287',
                      'time': '19:46:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740063',
                      'lng': '-104.986135',
                      'location': '1500 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '289671',
                      'time': '23:15:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '6',
                      'lat': '39.74006',
                      'lng': '-104.984856',
                      'location': 'E COLFAX AVE / N SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '290033',
                      'time': '01:27:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740021',
                      'lng': '-104.974792',
                      'location': 'E COLFAX AVE / N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '290098',
                      'time': '23:52:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74006',
                      'lng': '-104.984856',
                      'location': '1500-BLK N SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '290946',
                      'time': '06:36:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291077',
                      'time': '23:55:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.978081',
                      'location': '760 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291098',
                      'time': '20:46:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291157',
                      'time': '21:55:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '1500-BLK N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291158',
                      'time': '14:33:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '500 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291159',
                      'time': '00:17:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': 'E COLFAX AVE / N PEARL ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '291253',
                      'time': '03:38:18',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291277',
                      'time': '21:08:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': '1500-BLK N PEARL ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '291303',
                      'time': '00:23:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291354',
                      'time': '17:15:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291356',
                      'time': '03:17:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740047',
                      'lng': '-104.983584',
                      'location': 'E COLFAX AVE / N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291665',
                      'time': '20:13:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740063',
                      'lng': '-104.986135',
                      'location': '1500 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '291913',
                      'time': '01:13:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740021',
                      'lng': '-104.974792',
                      'location': 'E COLFAX AVE / N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '292101',
                      'time': '23:42:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.74001',
                      'lng': '-104.976176',
                      'location': '1500 N EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '292378',
                      'time': '06:29:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.740021',
                      'lng': '-104.974792',
                      'location': 'E COLFAX AVE / N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '293469',
                      'time': '02:08:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740021',
                      'lng': '-104.974792',
                      'location': 'E COLFAX AVE / N OGDEN ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '293547',
                      'time': '16:27:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74006',
                      'lng': '-104.984856',
                      'location': 'E COLFAX AVE / N SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '294352',
                      'time': '01:46:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Y - Broadcast',
                      'district': '6',
                      'lat': '39.740021',
                      'lng': '-104.974792',
                      'location': 'E COLFAX AVE / N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '294373',
                      'time': '23:37:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740047',
                      'lng': '-104.983584',
                      'location': 'E COLFAX AVE / N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '294530',
                      'time': '23:30:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740039',
                      'lng': '-104.983326',
                      'location': '321 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '295918',
                      'time': '22:47:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740047',
                      'lng': '-104.983584',
                      'location': '1500-BLK N GRANT ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '295962',
                      'time': '20:08:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '296157',
                      'time': '18:34:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '296230',
                      'time': '11:20:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '1500 N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '296243',
                      'time': '02:06:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '296328',
                      'time': '00:43:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400-BLK E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '296329',
                      'time': '22:21:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '296891',
                      'time': '01:13:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '500 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '297051',
                      'time': '01:33:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': 'E COLFAX AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '297275',
                      'time': '01:04:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '297586',
                      'time': '23:54:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '297659',
                      'time': '14:03:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '1500 N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '297730',
                      'time': '13:10:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': 'E COLFAX AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '297834',
                      'time': '19:20:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.978081',
                      'location': '760 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '297922',
                      'time': '23:41:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '298117',
                      'time': '00:30:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '298126',
                      'time': '03:08:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '298127',
                      'time': '21:20:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '298138',
                      'time': '01:41:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': '800 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '298140',
                      'time': '04:17:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '298225',
                      'time': '00:48:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '298284',
                      'time': '19:24:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': '600 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '298351',
                      'time': '23:00:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': 'E COLFAX AVE / N LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '298390',
                      'time': '22:19:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '1500 N LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '298398',
                      'time': '22:53:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '298568',
                      'time': '23:56:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'E COLFAX AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '298738',
                      'time': '13:13:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '500 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '298899',
                      'time': '04:09:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '400 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '298935',
                      'time': '19:05:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': 'E COLFAX AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '299006',
                      'time': '02:03:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.740007',
                      'lng': '-104.97764',
                      'location': 'N CLARKSON ST / E COLFAX AVE',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '299296',
                      'time': '20:05:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': 'E COLFAX AVE / N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '299562',
                      'time': '22:28:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-29',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': '1500-BLK N PEARL ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '299816',
                      'time': '05:31:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': 'E COLFAX AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '299832',
                      'time': '21:18:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740026',
                      'lng': '-104.982327',
                      'location': '1500-BLK-GRANT N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '299833',
                      'time': '17:25:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '6',
                      'lat': '39.740017',
                      'lng': '-104.978743',
                      'location': 'E COLFAX AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '299878',
                      'time': '00:46:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.976864',
                      'location': '857 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '299944',
                      'time': '00:49:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '300004',
                      'time': '11:35:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'L - Clearance',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '300082',
                      'time': '23:09:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740013',
                      'lng': '-104.978363',
                      'location': '735 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '300548',
                      'time': '02:14:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.976476',
                      'location': '900 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '300844',
                      'time': '01:41:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': '500 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '300918',
                      'time': '03:26:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.981102',
                      'location': 'E COLFAX AVE / N PENNSYLVANIA ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '300919',
                      'time': '19:11:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': 'E COLFAX AVE / N PEARL ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '300986',
                      'time': '21:21:20',
                      'type': 'pedestrian',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740022',
                      'lng': '-104.979911',
                      'location': 'E COLFAX AVE / N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '301048',
                      'time': '13:18:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': '1500-BLK N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '301161',
                      'time': '22:09:02',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '301163',
                      'time': '14:06:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '306089',
                      'time': '23:56:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '306989',
                      'time': '19:48:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '307008',
                      'time': '11:12:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '307011',
                      'time': '23:19:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '307013',
                      'time': '19:44:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '308166',
                      'time': '21:17:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'N DOWNING ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '308176',
                      'time': '11:59:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '308184',
                      'time': '23:35:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '309338',
                      'time': '23:57:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-10',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': '1500-BLK N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '309342',
                      'time': '00:04:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': '1500-BLK N DOWNING ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '310517',
                      'time': '20:08:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'N DOWNING ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '310518',
                      'time': '20:58:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '312006',
                      'time': '11:59:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.74003',
                      'lng': '-104.973412',
                      'location': 'E COLFAX AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '312468',
                      'time': '22:17:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-13',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.741679',
                      'lng': '-104.986116',
                      'location': '1600 N LINCOLN ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '314030',
                      'time': '23:48:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.741658',
                      'lng': '-104.976167',
                      'location': '1600 N EMERSON ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '314364',
                      'time': '23:04:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741658',
                      'lng': '-104.976167',
                      'location': 'E 16TH AVE / N EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '314368',
                      'time': '23:08:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.741658',
                      'lng': '-104.976167',
                      'location': '1600 N EMERSON ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '314377',
                      'time': '03:24:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '314416',
                      'time': '22:04:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '314475',
                      'time': '11:03:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '314856',
                      'time': '15:30:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '314920',
                      'time': '03:33:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '314993',
                      'time': '17:16:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '315286',
                      'time': '07:18:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.741671',
                      'lng': '-104.979802',
                      'location': '609 E 16TH AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '316358',
                      'time': '04:01:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.741676',
                      'lng': '-104.982332',
                      'location': '1600 N LOGAN ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '316886',
                      'time': '02:04:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '317017',
                      'time': '22:33:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.741676',
                      'lng': '-104.982332',
                      'location': 'E 16TH AVE / N LOGAN ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '317468',
                      'time': '03:00:06',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.741676',
                      'lng': '-104.984855',
                      'location': 'E 16TH AVE / N SHERMAN ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '317767',
                      'time': '17:28:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.741676',
                      'lng': '-104.984855',
                      'location': '1600-BLK-GRANT N SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '317777',
                      'time': '23:44:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74169',
                      'lng': '-104.98709',
                      'location': '25 E 16TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '318503',
                      'time': '14:56:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741654',
                      'lng': '-104.974774',
                      'location': '1600-BLK-DOWNING N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '319793',
                      'time': '23:04:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.741671',
                      'lng': '-104.979896',
                      'location': 'E 16TH AVE / N PEARL ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '320937',
                      'time': '11:57:39',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741654',
                      'lng': '-104.974774',
                      'location': 'E 16TH AVE / N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '320982',
                      'time': '23:50:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741654',
                      'lng': '-104.974774',
                      'location': '1600 N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '321568',
                      'time': '07:55:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '322208',
                      'time': '17:19:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.740157',
                      'lng': '-104.97991',
                      'location': '1509 N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '330543',
                      'time': '18:53:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.74378',
                      'lng': '-104.973383',
                      'location': 'PARK AVE / N DOWNING ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '335335',
                      'time': '02:40:51',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.743249',
                      'lng': '-104.973387',
                      'location': 'E 17TH AVE / N DOWNING ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '335991',
                      'time': '22:18:15',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-19',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.743258',
                      'lng': '-104.976152',
                      'location': '900-BLK E 17TH AVE',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '337636',
                      'time': '22:13:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743118',
                      'lng': '-104.979892',
                      'location': '1690 N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '338912',
                      'time': '00:34:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.743272',
                      'lng': '-104.983589',
                      'location': 'E 17TH AVE / N GRANT ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '338997',
                      'time': '02:12:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741654',
                      'lng': '-104.973392',
                      'location': 'E 16TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '339368',
                      'time': '11:12:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.741667',
                      'lng': '-104.977557',
                      'location': '1600-BLK N CLARKSON ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '345374',
                      'time': '01:00:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741667',
                      'lng': '-104.977557',
                      'location': 'E 16TH AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '345380',
                      'time': '18:50:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.741667',
                      'lng': '-104.977557',
                      'location': '800-BLK E 16TH AVE',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '345982',
                      'time': '19:29:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74328',
                      'lng': '-104.986115',
                      'location': 'E 17TH AVE / N LINCOLN ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '348167',
                      'time': '20:35:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741676',
                      'lng': '-104.981089',
                      'location': '1600-BLK N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '349166',
                      'time': '23:14:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '349560',
                      'time': '12:39:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '349561',
                      'time': '11:08:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.741671',
                      'lng': '-104.978736',
                      'location': 'E 16TH AVE / N WASHINGTON ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '349816',
                      'time': '22:11:04',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741114',
                      'lng': '-104.978738',
                      'location': '1566 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '349840',
                      'time': '18:40:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.743272',
                      'lng': '-104.982339',
                      'location': '1700 N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '351376',
                      'time': '21:48:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.741671',
                      'lng': '-104.978736',
                      'location': 'E 16TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '352239',
                      'time': '02:31:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743272',
                      'lng': '-104.982339',
                      'location': 'E 17TH AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '352617',
                      'time': '10:18:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.743249',
                      'lng': '-104.97474',
                      'location': '1002 E 17TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '357005',
                      'time': '00:56:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744835',
                      'lng': '-104.97339',
                      'location': 'E 18TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '359253',
                      'time': '16:46:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744835',
                      'lng': '-104.97339',
                      'location': '1800 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '359257',
                      'time': '02:58:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.747494',
                      'lng': '-104.977487',
                      'location': '757 E 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '360985',
                      'time': '20:14:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747494',
                      'lng': '-104.977487',
                      'location': '757 E 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '361000',
                      'time': '21:56:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.747494',
                      'lng': '-104.977487',
                      'location': '757 E 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '362138',
                      'time': '17:42:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.747494',
                      'lng': '-104.977487',
                      'location': '757 E 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '362156',
                      'time': '20:23:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74748',
                      'lng': '-104.976154',
                      'location': 'N EMERSON ST / E 20TH AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '363212',
                      'time': '23:01:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74748',
                      'lng': '-104.976154',
                      'location': 'E 20TH AVE / N EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '363216',
                      'time': '10:02:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.747552',
                      'lng': '-104.98359',
                      'location': 'N GRANT ST / E 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '364312',
                      'time': '23:59:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.747552',
                      'lng': '-104.98359',
                      'location': 'N GRANT ST / E 20TH AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '364382',
                      'time': '21:37:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.747487',
                      'lng': '-104.976961',
                      'location': '2000 N CLARKSON ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '364715',
                      'time': '10:00:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.747501',
                      'lng': '-104.978178',
                      'location': '2000-BLK N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '365080',
                      'time': '08:04:43',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.747552',
                      'lng': '-104.982311',
                      'location': 'E 20TH AVE / N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '365098',
                      'time': '13:43:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.747477',
                      'lng': '-104.974738',
                      'location': '1000 E 20TH AVE',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '365310',
                      'time': '22:41:12',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.747501',
                      'lng': '-104.978178',
                      'location': 'PARK AVE / E 20TH AVE',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '365374',
                      'time': '23:03:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.747552',
                      'lng': '-104.983279',
                      'location': '309 E 20TH AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '366025',
                      'time': '16:36:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747552',
                      'lng': '-104.983279',
                      'location': '309 E 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '366043',
                      'time': '23:55:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.747487',
                      'lng': '-104.976961',
                      'location': '2000-BLK N CLARKSON ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '366251',
                      'time': '11:21:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747494',
                      'lng': '-104.977487',
                      'location': '757 E 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '366914',
                      'time': '11:19:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74618',
                      'lng': '-104.979885',
                      'location': '1900 N PEARL ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '368111',
                      'time': '11:04:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747546',
                      'lng': '-104.981075',
                      'location': 'E 20TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '368238',
                      'time': '13:58:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74618',
                      'lng': '-104.976487',
                      'location': 'E 19TH AVE / PARK AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '368421',
                      'time': '11:00:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.746182',
                      'lng': '-104.98108',
                      'location': 'E 19TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '369342',
                      'time': '01:29:43',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.745908',
                      'lng': '-104.976142',
                      'location': 'PARK AVE / N EMERSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '371893',
                      'time': '11:48:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.74489',
                      'lng': '-104.986118',
                      'location': 'N LINCOLN ST / E 18TH AVE',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '374594',
                      'time': '22:55:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.744868',
                      'lng': '-104.983585',
                      'location': 'E 18TH AVE / N GRANT ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '374733',
                      'time': '02:45:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.744835',
                      'lng': '-104.97339',
                      'location': 'N DOWNING ST / E 18TH AVE',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '375136',
                      'time': '23:03:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.744835',
                      'lng': '-104.974777',
                      'location': 'E 18TH AVE / N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '375169',
                      'time': '13:15:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.750654',
                      'lng': '-104.979919',
                      'location': '24TH ST / TREMONT PL',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '377921',
                      'time': '14:05:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.749479',
                      'lng': '-104.976955',
                      'location': 'E 22ND AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '377952',
                      'time': '22:29:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.750518',
                      'lng': '-104.987024',
                      'location': '2100-BLK STOUT ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '378954',
                      'time': '22:34:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.749459',
                      'lng': '-104.978496',
                      'location': '2381 CLEVELAND PL',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '379245',
                      'time': '18:35:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747854',
                      'lng': '-104.983529',
                      'location': '21ST ST / TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '379805',
                      'time': '12:11:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.747867',
                      'lng': '-104.981234',
                      'location': '200 22ND ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '379885',
                      'time': '11:10:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.747854',
                      'lng': '-104.983529',
                      'location': '21ST ST / TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '380388',
                      'time': '01:10:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.749711',
                      'lng': '-104.981093',
                      'location': 'PARK AVE W / TREMONT PL',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '381152',
                      'time': '20:09:22',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.748452',
                      'lng': '-104.974568',
                      'location': '2100-EMERSON N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '381949',
                      'time': '09:56:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.748242',
                      'lng': '-104.986469',
                      'location': '2000 WELTON ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '383220',
                      'time': '09:39:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.750843',
                      'lng': '-104.986604',
                      'location': '2135 STOUT ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '384672',
                      'time': '14:23:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.747943',
                      'lng': '-104.986106',
                      'location': '20TH ST / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '385328',
                      'time': '03:28:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.749846',
                      'lng': '-104.986143',
                      'location': '700 21ST ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '386006',
                      'time': '13:27:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.749846',
                      'lng': '-104.986143',
                      'location': '21ST ST / CALIFORNIA ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '386009',
                      'time': '16:16:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.747527',
                      'lng': '-104.986105',
                      'location': '2001 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '386274',
                      'time': '04:36:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.748744',
                      'lng': '-104.982349',
                      'location': '2200-BLK TREMONT PL',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '386701',
                      'time': '16:18:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.747552',
                      'lng': '-104.983279',
                      'location': '309 E 20TH AVE',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '386950',
                      'time': '11:00:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.749477',
                      'lng': '-104.973359',
                      'location': 'E 22ND AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '387431',
                      'time': '23:10:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.747552',
                      'lng': '-104.983279',
                      'location': '309 E 20TH AVE',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '387583',
                      'time': '13:56:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.751068',
                      'lng': '-104.982887',
                      'location': '2301 WELTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '388398',
                      'time': '20:15:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.753052',
                      'lng': '-104.985476',
                      'location': '2300-CURTIS CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '389032',
                      'time': '00:27:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.752673',
                      'lng': '-104.98741',
                      'location': '22ND ST / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '389148',
                      'time': '00:57:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.752673',
                      'lng': '-104.98741',
                      'location': '22ND ST / N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '389150',
                      'time': '00:36:07',
                      'type': 'pedestrian',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.752673',
                      'lng': '-104.98741',
                      'location': '22ND ST / N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '389157',
                      'time': '20:13:14',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.751068',
                      'lng': '-104.982887',
                      'location': 'PARK AVE W / WELTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '389321',
                      'time': '01:01:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.752652',
                      'lng': '-104.982534',
                      'location': '24TH ST / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '390068',
                      'time': '00:09:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.752004',
                      'lng': '-104.981667',
                      'location': '2400 WELTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '390402',
                      'time': '18:34:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.751068',
                      'lng': '-104.982887',
                      'location': '600 PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '390454',
                      'time': '12:03:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.752132',
                      'lng': '-104.986683',
                      'location': '2200 CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '391016',
                      'time': '23:16:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.752132',
                      'lng': '-104.986683',
                      'location': '22ND ST / CHAMPA ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '391030',
                      'time': '23:48:19',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.752652',
                      'lng': '-104.982534',
                      'location': '24TH ST / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '392331',
                      'time': '23:07:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.752393',
                      'lng': '-104.984612',
                      'location': 'PARK AVE W / STOUT ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '392784',
                      'time': '02:08:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.752652',
                      'lng': '-104.982534',
                      'location': '24TH ST / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '392866',
                      'time': '23:34:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.753725',
                      'lng': '-104.986361',
                      'location': '2300-BLK-ARAPAHOE CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '393275',
                      'time': '02:31:34',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.751713',
                      'lng': '-104.983744',
                      'location': 'PARK AVE W / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '393435',
                      'time': '10:00:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.751713',
                      'lng': '-104.983744',
                      'location': 'PARK AVE W / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '393450',
                      'time': '15:46:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.751068',
                      'lng': '-104.982887',
                      'location': '2300-BLK WELTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '393863',
                      'time': '19:24:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'No Police Needed',
                      'district': '6',
                      'lat': '39.751068',
                      'lng': '-104.982887',
                      'location': '2301 WELTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '394134',
                      'time': '21:30:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.751713',
                      'lng': '-104.983744',
                      'location': 'PARK AVE W / CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '394967',
                      'time': '12:12:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.751068',
                      'lng': '-104.982887',
                      'location': '2300 WELTON ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '395337',
                      'time': '10:56:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.751713',
                      'lng': '-104.983744',
                      'location': '2300-BLK CALIFORNIA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '396171',
                      'time': '14:48:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.752004',
                      'lng': '-104.981667',
                      'location': '2400 WELTON ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '398377',
                      'time': '13:49:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.751455',
                      'lng': '-104.985814',
                      'location': '800 22ND ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '398660',
                      'time': '00:38:18',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.754677',
                      'lng': '-104.985142',
                      'location': '24TH ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '403265',
                      'time': '08:58:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754677',
                      'lng': '-104.985142',
                      'location': '24TH ST / CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '404391',
                      'time': '05:04:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.754677',
                      'lng': '-104.985142',
                      'location': '2400 CURTIS ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '411166',
                      'time': '23:57:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.753052',
                      'lng': '-104.985476',
                      'location': 'PARK AVE W / CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '416430',
                      'time': '23:17:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.753052',
                      'lng': '-104.985476',
                      'location': 'PARK AVE W / CHAMPA ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '416431',
                      'time': '23:15:26',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.753052',
                      'lng': '-104.985476',
                      'location': 'PARK AVE W / CHAMPA ST',
                      'outcome': 'warning',
                      'precinct': '621',
                      'raw_row_number': '416448',
                      'time': '23:11:41',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753052',
                      'lng': '-104.985476',
                      'location': 'PARK AVE W / CHAMPA ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '416462',
                      'time': '02:29:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753725',
                      'lng': '-104.986361',
                      'location': '2300-BLK CURTIS ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '416695',
                      'time': '01:13:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.752869',
                      'lng': '-104.98399',
                      'location': '2351 STOUT ST',
                      'outcome': 'citation',
                      'precinct': '621',
                      'raw_row_number': '418153',
                      'time': '13:25:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753725',
                      'lng': '-104.986361',
                      'location': 'PARK AVE W / CURTIS ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '419148',
                      'time': '18:27:10',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.753951',
                      'lng': '-104.986663',
                      'location': '1030 PARK AVE W',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '420177',
                      'time': '00:29:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.753052',
                      'lng': '-104.985476',
                      'location': '2300-BLK CHAMPA ST',
                      'outcome': 'arrest',
                      'precinct': '621',
                      'raw_row_number': '420404',
                      'time': '18:16:37',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755332',
                      'lng': '-104.986006',
                      'location': '2400-BLK ARAPAHOE ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '426272',
                      'time': '12:03:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.755332',
                      'lng': '-104.986006',
                      'location': '1100-BLK 24TH ST',
                      'outcome': 'NA',
                      'precinct': '621',
                      'raw_row_number': '426351',
                      'time': '18:48:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '622': [{'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.729089',
                      'lng': '-104.970622',
                      'location': 'N LAFAYETTE ST / E 8TH AVE',
                      'outcome': 'warning',
                      'precinct': '622',
                      'raw_row_number': '200101',
                      'time': '01:39:49',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.729089',
                      'lng': '-104.970622',
                      'location': '800 N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '200104',
                      'time': '12:41:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.729086',
                      'lng': '-104.968307',
                      'location': '1599 E 8TH AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '224939',
                      'time': '16:28:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.729105',
                      'lng': '-104.963664',
                      'location': 'E 8TH AVE / N RACE ST',
                      'outcome': 'warning',
                      'precinct': '622',
                      'raw_row_number': '225662',
                      'time': '00:40:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.729086',
                      'lng': '-104.968307',
                      'location': '1599 E 8TH AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '227339',
                      'time': '14:12:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.730476',
                      'lng': '-104.967798',
                      'location': 'CHEESMAN PARK 1',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '228586',
                      'time': '11:12:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.729086',
                      'lng': '-104.968307',
                      'location': '1599 E 8TH AVE',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '229125',
                      'time': '14:09:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.735042',
                      'lng': '-104.959793',
                      'location': '1200 N YORK ST',
                      'outcome': 'warning',
                      'precinct': '622',
                      'raw_row_number': '253931',
                      'time': '08:06:56',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.73505',
                      'lng': '-104.961024',
                      'location': '1200-BLK N GAYLORD ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '253935',
                      'time': '19:27:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.732283',
                      'lng': '-104.959799',
                      'location': '1000-BLK N YORK ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '256244',
                      'time': '02:54:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.738399',
                      'lng': '-104.964769',
                      'location': '1400-BLK N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '260740',
                      'time': '19:26:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738407',
                      'lng': '-104.970693',
                      'location': 'E 14TH AVE / N LAFAYETTE ST',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '261002',
                      'time': '00:36:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-12',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738408',
                      'lng': '-104.968468',
                      'location': '1400 N FRANKLIN ST',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '265713',
                      'time': '04:40:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738404',
                      'lng': '-104.967229',
                      'location': '1400 N GILPIN ST',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '267250',
                      'time': '18:57:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738414',
                      'lng': '-104.969532',
                      'location': '1400-BLK N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '267831',
                      'time': '10:42:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.738399',
                      'lng': '-104.964769',
                      'location': '1400 N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '267886',
                      'time': '04:00:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.738407',
                      'lng': '-104.970693',
                      'location': '1400-BLK N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '269324',
                      'time': '23:39:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738397',
                      'lng': '-104.963476',
                      'location': '1400 N RACE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '269386',
                      'time': '01:57:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738414',
                      'lng': '-104.969532',
                      'location': 'E 14TH AVE / N HUMBOLDT ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '270241',
                      'time': '02:05:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738403',
                      'lng': '-104.965998',
                      'location': 'E 14TH AVE / N WILLIAMS ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '270586',
                      'time': '17:20:08',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-01',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.736811',
                      'lng': '-104.959785',
                      'location': 'E 13TH AVE / N YORK ST',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '270890',
                      'time': '00:35:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738403',
                      'lng': '-104.965998',
                      'location': '1400 N WILLIAMS ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '272340',
                      'time': '12:01:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738393',
                      'lng': '-104.962245',
                      'location': '1400-BLK-RACE N VINE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '272947',
                      'time': '20:08:52',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738393',
                      'lng': '-104.962245',
                      'location': '1400-BLK N VINE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '273623',
                      'time': '19:47:31',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.739254',
                      'lng': '-104.965994',
                      'location': '1453 N WILLIAMS ST',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '274000',
                      'time': '00:23:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738404',
                      'lng': '-104.971854',
                      'location': 'E 14TH AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '275059',
                      'time': '12:02:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.736821',
                      'lng': '-104.963481',
                      'location': 'N RACE ST / E 13TH AVE',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '276553',
                      'time': '23:58:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-26',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.736821',
                      'lng': '-104.963481',
                      'location': 'E 13TH AVE / N RACE ST',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '276556',
                      'time': '12:58:32',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.736821',
                      'lng': '-104.964773',
                      'location': '1300-BLK-WILLIAMS N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '278956',
                      'time': '11:12:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.736877',
                      'lng': '-104.973008',
                      'location': 'E 13TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '280497',
                      'time': '14:42:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': 'E COLFAX AVE / N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '281959',
                      'time': '01:46:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.96599',
                      'location': 'E COLFAX AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '282037',
                      'time': '17:48:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'E COLFAX AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '282590',
                      'time': '02:56:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'E COLFAX AVE / N FRANKLIN ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '282602',
                      'time': '22:11:03',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.739994',
                      'lng': '-104.963466',
                      'location': 'E COLFAX AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '282753',
                      'time': '15:26:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.739994',
                      'lng': '-104.963466',
                      'location': '1500 N RACE ST',
                      'outcome': 'warning',
                      'precinct': '622',
                      'raw_row_number': '282910',
                      'time': '00:18:05',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': 'E COLFAX AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '282996',
                      'time': '09:33:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.96599',
                      'location': 'E COLFAX AVE / N WILLIAMS ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '283149',
                      'time': '18:34:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740039',
                      'lng': '-104.972992',
                      'location': '1200 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '283734',
                      'time': '10:19:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739994',
                      'lng': '-104.963466',
                      'location': 'E COLFAX AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '283869',
                      'time': '15:09:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': 'E COLFAX AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '284474',
                      'time': '22:45:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-15',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.971877',
                      'location': '1300-BLK E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '284743',
                      'time': '05:52:54',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.972137',
                      'location': '1500 N MARION ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '284828',
                      'time': '18:49:11',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'N FRANKLIN ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '285102',
                      'time': '11:30:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.971877',
                      'location': 'E COLFAX AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '285233',
                      'time': '16:16:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.739989',
                      'lng': '-104.961014',
                      'location': '1500 N GAYLORD ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '285300',
                      'time': '22:12:17',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739995',
                      'lng': '-104.962238',
                      'location': '2100 E COLFAX AVE',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '285811',
                      'time': '01:10:19',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'E COLFAX AVE / N FRANKLIN ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '289161',
                      'time': '15:03:57',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'E COLFAX AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '289162',
                      'time': '16:35:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'E COLFAX AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '289163',
                      'time': '19:11:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'E COLFAX AVE / N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '301253',
                      'time': '03:38:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'GOA',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'PARK AVE / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '301267',
                      'time': '13:32:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-20',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.969688',
                      'location': 'E COLFAX AVE / N HUMBOLDT ST',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '301313',
                      'time': '02:46:07',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740034',
                      'lng': '-104.972642',
                      'location': '1150 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '306077',
                      'time': '13:18:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740013',
                      'lng': '-104.967232',
                      'location': 'E COLFAX AVE / N GILPIN ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '306205',
                      'time': '22:52:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.96599',
                      'location': '1800 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '306778',
                      'time': '23:21:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.970728',
                      'location': 'E COLFAX AVE / N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '307326',
                      'time': '20:25:24',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'N FRANKLIN ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '307988',
                      'time': '01:23:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.970728',
                      'location': 'E COLFAX AVE / N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '308216',
                      'time': '01:17:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': 'E COLFAX AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '308760',
                      'time': '15:36:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': 'E COLFAX AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '308777',
                      'time': '11:01:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964815',
                      'location': '1895 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '309319',
                      'time': '22:42:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740013',
                      'lng': '-104.967232',
                      'location': 'E COLFAX AVE / N GILPIN ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '309478',
                      'time': '14:50:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-27',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.739989',
                      'lng': '-104.959782',
                      'location': 'E COLFAX AVE / N YORK ST',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '309673',
                      'time': '23:15:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964815',
                      'location': '1895 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '309909',
                      'time': '12:12:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-16',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.96599',
                      'location': 'N WILLIAMS ST / E COLFAX AVE',
                      'outcome': 'citation',
                      'precinct': '622',
                      'raw_row_number': '310019',
                      'time': '00:09:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740013',
                      'lng': '-104.967232',
                      'location': '1700-BLK E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '310065',
                      'time': '14:08:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'L - Clearance',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.970728',
                      'location': 'E COLFAX AVE / N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '310563',
                      'time': '04:53:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740013',
                      'lng': '-104.967232',
                      'location': 'E COLFAX AVE / N GILPIN ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '310641',
                      'time': '01:20:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.739994',
                      'lng': '-104.963466',
                      'location': 'E COLFAX AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311018',
                      'time': '00:35:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739994',
                      'lng': '-104.963466',
                      'location': 'E COLFAX AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311041',
                      'time': '15:47:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': 'E COLFAX AVE / N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311115',
                      'time': '22:52:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': '1500-Williams N HIGH ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311116',
                      'time': '17:44:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.739994',
                      'lng': '-104.963466',
                      'location': 'E COLFAX AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311123',
                      'time': '23:07:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': 'E COLFAX AVE / N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '311148',
                      'time': '22:40:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.96599',
                      'location': 'E COLFAX AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311278',
                      'time': '21:51:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': 'E COLFAX AVE / N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '311323',
                      'time': '13:34:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74',
                      'lng': '-104.964766',
                      'location': 'E COLFAX AVE / N HIGH ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '311376',
                      'time': '15:09:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.970728',
                      'location': '1500 N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311396',
                      'time': '20:37:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.96599',
                      'location': '1801 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311444',
                      'time': '14:37:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.96599',
                      'location': 'E COLFAX AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311494',
                      'time': '11:04:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740006',
                      'lng': '-104.96599',
                      'location': '1500-BLK N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311497',
                      'time': '02:42:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.969688',
                      'location': '1500 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311563',
                      'time': '09:07:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.969688',
                      'location': 'E COLFAX AVE / N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311614',
                      'time': '09:45:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740013',
                      'lng': '-104.967232',
                      'location': 'E COLFAX AVE / N GILPIN ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '311656',
                      'time': '22:20:50',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.740027',
                      'lng': '-104.972137',
                      'location': '1500 N MARION ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '312513',
                      'time': '02:45:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': '1600 E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '312714',
                      'time': '00:47:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'PARK AVE / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '312766',
                      'time': '02:09:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.740011',
                      'lng': '-104.968462',
                      'location': 'N FRANKLIN ST / E COLFAX AVE',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '313411',
                      'time': '02:47:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.74164',
                      'lng': '-104.972156',
                      'location': 'E 16TH AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '314125',
                      'time': '23:40:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.740919',
                      'lng': '-104.969711',
                      'location': 'PARK AVE / N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '314327',
                      'time': '13:14:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.740919',
                      'lng': '-104.969711',
                      'location': 'PARK AVE / N HUMBOLDT ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '314751',
                      'time': '12:50:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74164',
                      'lng': '-104.972156',
                      'location': '1600 N MARION ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '315252',
                      'time': '11:25:05',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74326',
                      'lng': '-104.959783',
                      'location': '1700 N YORK ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '337126',
                      'time': '00:59:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.74326',
                      'lng': '-104.959783',
                      'location': 'E 17TH AVE / N YORK ST',
                      'outcome': 'warning',
                      'precinct': '622',
                      'raw_row_number': '337438',
                      'time': '22:21:25',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.743238',
                      'lng': '-104.972133',
                      'location': 'E 17TH AVE / N MARION ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '340589',
                      'time': '14:31:13',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.743238',
                      'lng': '-104.972133',
                      'location': 'E 17TH AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '341162',
                      'time': '01:21:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.743222',
                      'lng': '-104.962236',
                      'location': '1700-BLK N VINE ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '342991',
                      'time': '01:36:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.742808',
                      'lng': '-104.972129',
                      'location': 'PARK AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '343445',
                      'time': '13:06:12',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743086',
                      'lng': '-104.965988',
                      'location': '1690 N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '344789',
                      'time': '10:37:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.741649',
                      'lng': '-104.969681',
                      'location': 'E 16TH AVE / N HUMBOLDT ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '344998',
                      'time': '03:09:56',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741629',
                      'lng': '-104.963473',
                      'location': '1600 N RACE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '345071',
                      'time': '20:05:25',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.741618',
                      'lng': '-104.959777',
                      'location': '1600-BLK N YORK ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '345220',
                      'time': '15:25:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.742808',
                      'lng': '-104.972129',
                      'location': 'PARK AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '351878',
                      'time': '11:37:18',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.743238',
                      'lng': '-104.968448',
                      'location': '1700-BLK-HUMBOLDT N FRANKLIN ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '357209',
                      'time': '20:52:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.743221',
                      'lng': '-104.963464',
                      'location': 'E 17TH AVE / N RACE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '357336',
                      'time': '08:03:44',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-10',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74326',
                      'lng': '-104.959783',
                      'location': '1700 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '357544',
                      'time': '03:43:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.74326',
                      'lng': '-104.959783',
                      'location': '1700 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '357656',
                      'time': '09:34:29',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74326',
                      'lng': '-104.959783',
                      'location': '1700 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '357873',
                      'time': '23:22:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.74326',
                      'lng': '-104.959783',
                      'location': 'E 17TH AVE / N YORK ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '357874',
                      'time': '18:14:12',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.74326',
                      'lng': '-104.959783',
                      'location': '1700 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '357926',
                      'time': '01:27:36',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74326',
                      'lng': '-104.959783',
                      'location': '1700 N YORK ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '357958',
                      'time': '15:55:42',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744835',
                      'lng': '-104.97339',
                      'location': 'E 18TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '359254',
                      'time': '16:46:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744835',
                      'lng': '-104.97339',
                      'location': '1800 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '359258',
                      'time': '02:58:36',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.744768',
                      'lng': '-104.95979',
                      'location': 'E 18TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '374832',
                      'time': '23:23:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.744826',
                      'lng': '-104.972124',
                      'location': 'E 18TH AVE / N MARION ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '374890',
                      'time': '11:03:14',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.744835',
                      'lng': '-104.97339',
                      'location': 'N DOWNING ST / E 18TH AVE',
                      'outcome': 'warning',
                      'precinct': '622',
                      'raw_row_number': '375137',
                      'time': '23:03:08',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.744768',
                      'lng': '-104.95979',
                      'location': 'E 18TH AVE / N YORK ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '375341',
                      'time': '22:14:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74481',
                      'lng': '-104.965976',
                      'location': '1800 N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '375719',
                      'time': '22:13:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.74481',
                      'lng': '-104.965976',
                      'location': 'E 18TH AVE / N WILLIAMS ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '375724',
                      'time': '23:10:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.748951',
                      'lng': '-104.960994',
                      'location': '2159 N GAYLORD ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '379518',
                      'time': '22:33:26',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.749464',
                      'lng': '-104.967176',
                      'location': 'E 22ND AVE / N GILPIN ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '380277',
                      'time': '22:44:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.74946',
                      'lng': '-104.970892',
                      'location': '2200-MARION N LAFAYETTE ST',
                      'outcome': 'NA',
                      'precinct': '622',
                      'raw_row_number': '385912',
                      'time': '22:40:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.748225',
                      'lng': '-104.972126',
                      'location': 'E 21ST AVE / N MARION ST',
                      'outcome': 'arrest',
                      'precinct': '622',
                      'raw_row_number': '385969',
                      'time': '22:57:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'}],
             '623': [{'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.727276',
                      'lng': '-104.987415',
                      'location': '700 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '199973',
                      'time': '00:33:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.727277',
                      'lng': '-104.982364',
                      'location': 'E 7TH AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '200075',
                      'time': '18:08:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.729073',
                      'lng': '-104.98237',
                      'location': '800-BLK N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '200092',
                      'time': '23:09:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.727276',
                      'lng': '-104.987415',
                      'location': 'E 7TH AVE / E SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '201325',
                      'time': '03:18:39',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.727265',
                      'lng': '-104.981139',
                      'location': 'E 7TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '202143',
                      'time': '10:00:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.727276',
                      'lng': '-104.987415',
                      'location': '700-BLK N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '204165',
                      'time': '02:44:06',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.727276',
                      'lng': '-104.987415',
                      'location': '700-BLK N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '204259',
                      'time': '22:01:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.730451',
                      'lng': '-104.986134',
                      'location': '900 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '220706',
                      'time': '06:22:47',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.733848',
                      'lng': '-104.98613',
                      'location': '1100 N LINCOLN ST',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '221016',
                      'time': '22:55:53',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.733964',
                      'lng': '-104.986129',
                      'location': '1109 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '221605',
                      'time': '12:18:33',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'UTL / Unfounded / Unsuccessful',
                      'district': '6',
                      'lat': '39.733692',
                      'lng': '-104.979861',
                      'location': 'E 11TH AVE / N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '222580',
                      'time': '02:01:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.733857',
                      'lng': '-104.987415',
                      'location': 'E 11TH AVE / N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '224385',
                      'time': '23:12:09',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.733857',
                      'lng': '-104.987415',
                      'location': 'E 11TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '224389',
                      'time': '03:25:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.730452',
                      'lng': '-104.974092',
                      'location': '900-BLK N CORONA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '225249',
                      'time': '02:27:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.730452',
                      'lng': '-104.974092',
                      'location': 'E 9TH AVE / N CORONA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '225251',
                      'time': '14:02:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.733857',
                      'lng': '-104.987415',
                      'location': 'E 11TH AVE / N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '226781',
                      'time': '00:37:16',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.730453',
                      'lng': '-104.973462',
                      'location': '1155 E 9TH AVE',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '229170',
                      'time': '08:18:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-28',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.730451',
                      'lng': '-104.986134',
                      'location': 'E 9TH AVE / N LINCOLN ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '231667',
                      'time': '10:52:58',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.727276',
                      'lng': '-104.987415',
                      'location': '700 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '235106',
                      'time': '02:09:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.729071',
                      'lng': '-104.981124',
                      'location': 'E 8TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '236576',
                      'time': '07:21:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.729067',
                      'lng': '-104.986153',
                      'location': 'E 8TH AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '237488',
                      'time': '23:53:44',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-30',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.727278',
                      'lng': '-104.98615',
                      'location': '700-BLK N LINCOLN ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '237519',
                      'time': '21:36:28',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.727276',
                      'lng': '-104.987415',
                      'location': '700 N BROADWAY ST',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '237795',
                      'time': '22:35:36',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-05',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.727262',
                      'lng': '-104.977558',
                      'location': '700 N CLARKSON ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '237817',
                      'time': '19:17:04',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-08',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.727276',
                      'lng': '-104.987415',
                      'location': 'N BROADWAY ST / E SPEER BLVD',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '238375',
                      'time': '00:35:28',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.736842',
                      'lng': '-104.984857',
                      'location': '1300-BLK N SHERMAN ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '241673',
                      'time': '02:30:30',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.736884',
                      'lng': '-104.978721',
                      'location': 'E 13TH AVE / N WASHINGTON ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '242785',
                      'time': '20:00:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.736842',
                      'lng': '-104.984857',
                      'location': '1300 N SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '242964',
                      'time': '22:17:05',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.736884',
                      'lng': '-104.978721',
                      'location': '1300-BLK-PEARL N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '243294',
                      'time': '22:56:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.736884',
                      'lng': '-104.978721',
                      'location': 'E 13TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '243305',
                      'time': '20:03:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.736884',
                      'lng': '-104.978721',
                      'location': 'E 13TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '243456',
                      'time': '10:48:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.736887',
                      'lng': '-104.982302',
                      'location': '400-BLK E 13TH AVE',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '244358',
                      'time': '09:34:48',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.736887',
                      'lng': '-104.982302',
                      'location': 'E 13TH AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '244937',
                      'time': '00:01:59',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.735275',
                      'lng': '-104.986123',
                      'location': 'N LINCOLN ST / E 12TH AVE',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '246784',
                      'time': '16:14:07',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.735273',
                      'lng': '-104.983593',
                      'location': 'E 12TH AVE / N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '247132',
                      'time': '22:26:03',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.736887',
                      'lng': '-104.982302',
                      'location': 'N LOGAN ST / E 13TH AVE',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '247289',
                      'time': '00:30:15',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.734344',
                      'lng': '-104.98741',
                      'location': '1135 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '247465',
                      'time': '04:02:31',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.734344',
                      'lng': '-104.98741',
                      'location': '1135 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '247477',
                      'time': '01:19:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.735275',
                      'lng': '-104.984857',
                      'location': '1200 N SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '247718',
                      'time': '17:40:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.735275',
                      'lng': '-104.984857',
                      'location': '1200-BLK N SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '247719',
                      'time': '23:56:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.736887',
                      'lng': '-104.982302',
                      'location': 'E 13TH AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '247863',
                      'time': '02:24:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.735275',
                      'lng': '-104.984857',
                      'location': 'E 12TH AVE / N SHERMAN ST',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '248331',
                      'time': '01:44:19',
                      'type': 'pedestrian',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.735275',
                      'lng': '-104.984857',
                      'location': 'E 12TH AVE / N SHERMAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '249528',
                      'time': '00:35:29',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.733848',
                      'lng': '-104.98613',
                      'location': 'E 11TH AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '250465',
                      'time': '01:54:39',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.732041',
                      'lng': '-104.983582',
                      'location': 'E 10TH AVE / N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '250539',
                      'time': '01:08:20',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.733691',
                      'lng': '-104.975275',
                      'location': 'E 11TH AVE / N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '250689',
                      'time': '22:39:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.733695',
                      'lng': '-104.981044',
                      'location': '500 E 11TH AVE',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '250954',
                      'time': '02:08:41',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.735156',
                      'lng': '-104.981062',
                      'location': 'E 12TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '251664',
                      'time': '17:54:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'None',
                      'district': '6',
                      'lat': '39.735275',
                      'lng': '-104.986123',
                      'location': 'E 12TH AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '254997',
                      'time': '17:53:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.733675',
                      'lng': '-104.977588',
                      'location': 'E 11TH AVE / N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '255716',
                      'time': '11:08:51',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.733698',
                      'lng': '-104.978687',
                      'location': '1100 N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '256362',
                      'time': '00:17:21',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Evidence / Property',
                      'district': '6',
                      'lat': '39.73204',
                      'lng': '-104.986127',
                      'location': 'E 10TH AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '257683',
                      'time': '16:25:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'No Police Needed',
                      'district': '6',
                      'lat': '39.73204',
                      'lng': '-104.986127',
                      'location': 'N LINCOLN ST / E 10TH AVE',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '257695',
                      'time': '07:39:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.733857',
                      'lng': '-104.987415',
                      'location': 'E 11TH AVE / N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '257968',
                      'time': '00:24:45',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Vehicle Towed',
                      'district': '6',
                      'lat': '39.733848',
                      'lng': '-104.98613',
                      'location': 'N LINCOLN ST / E 11TH AVE',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '258824',
                      'time': '11:57:34',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '260961',
                      'time': '02:55:06',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738423',
                      'lng': '-104.974131',
                      'location': '1400 N CORONA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '261577',
                      'time': '02:46:59',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '265932',
                      'time': '23:57:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '265944',
                      'time': '00:46:30',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': 'E 14TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266174',
                      'time': '18:41:42',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738757',
                      'lng': '-104.981085',
                      'location': '1421 N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266204',
                      'time': '21:36:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266297',
                      'time': '00:56:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400-GRANT N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266394',
                      'time': '23:59:10',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400 N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266395',
                      'time': '17:20:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': '1400-BLK-LOGAN N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266473',
                      'time': '00:29:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738444',
                      'lng': '-104.986122',
                      'location': '1400-BLK N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266660',
                      'time': '14:50:41',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': 'E 14TH AVE / N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266723',
                      'time': '22:54:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738416',
                      'lng': '-104.977612',
                      'location': '1400 N CLARKSON ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266810',
                      'time': '12:32:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266866',
                      'time': '16:14:37',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-07',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '266897',
                      'time': '20:25:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'File Only',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '267140',
                      'time': '23:45:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-14',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '267148',
                      'time': '09:09:40',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-20',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '267153',
                      'time': '10:38:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '267158',
                      'time': '02:36:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': 'E 14TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '267373',
                      'time': '17:41:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738416',
                      'lng': '-104.977612',
                      'location': 'E 14TH AVE / N CLARKSON ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '267401',
                      'time': '00:46:53',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.738421',
                      'lng': '-104.976463',
                      'location': 'N EMERSON ST / E 14TH AVE',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '267474',
                      'time': '17:22:31',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '267771',
                      'time': '23:13:00',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-07',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': 'N LOGAN ST / E 14TH AVE',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '267951',
                      'time': '19:22:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738427',
                      'lng': '-104.979906',
                      'location': '1400 N PEARL ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '268023',
                      'time': '19:19:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268072',
                      'time': '19:48:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'O - Veh Released to Owner',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268083',
                      'time': '00:13:49',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-04',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.738423',
                      'lng': '-104.974131',
                      'location': 'N CORONA ST / E 14TH AVE',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268118',
                      'time': '23:58:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': '1400-BLK-LOGAN N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268292',
                      'time': '19:11:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-18',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738421',
                      'lng': '-104.978727',
                      'location': '1400-BLK N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268309',
                      'time': '00:54:52',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'K - Street Check Completed',
                      'district': '6',
                      'lat': '39.738421',
                      'lng': '-104.978727',
                      'location': 'E 14TH AVE / N WASHINGTON ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268325',
                      'time': '01:38:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268353',
                      'time': '23:34:21',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '268366',
                      'time': '00:15:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738401',
                      'lng': '-104.973019',
                      'location': 'E 14TH AVE / N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268382',
                      'time': '13:29:01',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738444',
                      'lng': '-104.986122',
                      'location': '1400-BLK N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268493',
                      'time': '10:23:56',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738416',
                      'lng': '-104.977612',
                      'location': '1400-BLK N CLARKSON ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '268598',
                      'time': '11:54:57',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '268700',
                      'time': '04:27:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400-BLK N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '269430',
                      'time': '02:18:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-26',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738424',
                      'lng': '-104.975296',
                      'location': 'E 14TH AVE / N OGDEN ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '269587',
                      'time': '03:18:49',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400-BLK N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '269728',
                      'time': '00:35:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': '1400-BLK-LOGAN N PENNSYLVANIA ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '269795',
                      'time': '19:58:09',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-24',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': '1400-BLK-LOGAN N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '269798',
                      'time': '10:32:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738401',
                      'lng': '-104.973019',
                      'location': '1400 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '269874',
                      'time': '23:41:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '269899',
                      'time': '17:58:53',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '269901',
                      'time': '01:46:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '269902',
                      'time': '03:56:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'L - Clearance',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '269904',
                      'time': '00:45:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-25',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': '1400 N PENNSYLVANIA ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '270076',
                      'time': '13:28:04',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738424',
                      'lng': '-104.975296',
                      'location': '1400-BLK N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '270222',
                      'time': '23:24:47',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400-BLK N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '270356',
                      'time': '11:06:54',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400-BLK N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '270358',
                      'time': '03:39:19',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '270468',
                      'time': '01:41:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-21',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '270480',
                      'time': '02:02:58',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '270481',
                      'time': '14:14:55',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '270491',
                      'time': '20:55:22',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738401',
                      'lng': '-104.973019',
                      'location': '1400 N DOWNING ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '270504',
                      'time': '22:16:27',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-28',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400 N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '270639',
                      'time': '14:08:24',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-03',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.736884',
                      'lng': '-104.981097',
                      'location': 'E 13TH AVE / N PENNSYLVANIA ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '270857',
                      'time': '22:27:00',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.736865',
                      'lng': '-104.975291',
                      'location': 'E 13TH AVE / N OGDEN ST',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '271163',
                      'time': '15:39:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-09',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738423',
                      'lng': '-104.974131',
                      'location': '1400-DOWN N CORONA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '271404',
                      'time': '02:21:32',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-06',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.738437',
                      'lng': '-104.983595',
                      'location': 'E 14TH AVE / N GRANT ST',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '271474',
                      'time': '19:30:34',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-11',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.738437',
                      'lng': '-104.983595',
                      'location': '1400-BLK N GRANT ST',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '271487',
                      'time': '19:23:45',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-23',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738437',
                      'lng': '-104.983595',
                      'location': '1400-LOGAN N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '271488',
                      'time': '19:02:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-14',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738437',
                      'lng': '-104.983595',
                      'location': '300 E 14TH AVE',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '272059',
                      'time': '00:49:22',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.739652',
                      'lng': '-104.981097',
                      'location': '1476 N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '272487',
                      'time': '10:03:17',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-30',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400-BLK N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '272658',
                      'time': '22:34:16',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400-PENN N LOGAN ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '272667',
                      'time': '23:32:50',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': '1400-BLK-LOGAN N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '272676',
                      'time': '22:40:13',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': '1400-BLK-LOGAN N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '272677',
                      'time': '19:53:45',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-02',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': '1400-LOGAN N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '272829',
                      'time': '21:19:23',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-03',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738421',
                      'lng': '-104.978727',
                      'location': '1400-BLK N WASHINGTON ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '273427',
                      'time': '18:50:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.738427',
                      'lng': '-104.979906',
                      'location': 'N PEARL ST / E 14TH AVE',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '273798',
                      'time': '17:50:11',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738436',
                      'lng': '-104.982317',
                      'location': '1400-blk N LOGAN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '274129',
                      'time': '18:49:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-13',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738427',
                      'lng': '-104.979906',
                      'location': 'E 14TH AVE / N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '274457',
                      'time': '20:12:23',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-17',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738427',
                      'lng': '-104.979906',
                      'location': '1400-BLK-PENN N PEARL ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '274535',
                      'time': '22:42:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Warning Issued',
                      'district': '6',
                      'lat': '39.738427',
                      'lng': '-104.979906',
                      'location': '1400-BLK N PEARL ST',
                      'outcome': 'warning',
                      'precinct': '623',
                      'raw_row_number': '274536',
                      'time': '00:19:54',
                      'type': 'vehicular',
                      'warning_issued': 'TRUE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-19',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.738424',
                      'lng': '-104.975296',
                      'location': '1400-BLK N OGDEN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '275219',
                      'time': '01:49:46',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.738431',
                      'lng': '-104.981081',
                      'location': '1400-BLK-LOGAN N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '275296',
                      'time': '18:49:27',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '275345',
                      'time': '19:55:08',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-16',
                      'disposition': 'In Service',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '275348',
                      'time': '19:31:38',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-05',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '275362',
                      'time': '03:48:07',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-06',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.739615',
                      'lng': '-104.987395',
                      'location': '1499 N BROADWAY ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '275363',
                      'time': '16:07:35',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.736884',
                      'lng': '-104.981097',
                      'location': '1300 N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '275910',
                      'time': '22:50:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-29',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.736848',
                      'lng': '-104.986129',
                      'location': 'E 13TH AVE / N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '276196',
                      'time': '00:06:14',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Detox Van',
                      'district': '6',
                      'lat': '39.736844',
                      'lng': '-104.983619',
                      'location': '300 E 13TH AVE',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '277130',
                      'time': '02:00:15',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'TRUE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-01',
                      'disposition': 'Arrest Made',
                      'district': '6',
                      'lat': '39.736848',
                      'lng': '-104.986129',
                      'location': 'E 13TH AVE / N LINCOLN ST',
                      'outcome': 'arrest',
                      'precinct': '623',
                      'raw_row_number': '277387',
                      'time': '03:08:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-22',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.736848',
                      'lng': '-104.986129',
                      'location': '1300 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '277400',
                      'time': '00:55:51',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-21',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.738437',
                      'lng': '-104.983595',
                      'location': 'E 14TH AVE / N GRANT ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '277766',
                      'time': '23:41:48',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-25',
                      'disposition': 'Back Up / Cover Car',
                      'district': '6',
                      'lat': '39.736848',
                      'lng': '-104.986129',
                      'location': '1300 N LINCOLN ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '278027',
                      'time': '01:22:25',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-27',
                      'disposition': 'Report Made',
                      'district': '6',
                      'lat': '39.736844',
                      'lng': '-104.983619',
                      'location': 'E 13TH AVE / N GRANT ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '278307',
                      'time': '02:11:40',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-24',
                      'disposition': 'T - Citation Issued',
                      'district': '6',
                      'lat': '39.736884',
                      'lng': '-104.981097',
                      'location': '1300-BLK N PENNSYLVANIA ST',
                      'outcome': 'citation',
                      'precinct': '623',
                      'raw_row_number': '280445',
                      'time': '18:55:38',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-12',
                      'disposition': 'Party Advised',
                      'district': '6',
                      'lat': '39.736884',
                      'lng': '-104.981097',
                      'location': '1300 N PENNSYLVANIA ST',
                      'outcome': 'NA',
                      'precinct': '623',
                      'raw_row_number': '280447',
                      'time': '20:04:46',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'}],
             '759': [{'arrest_made': 'FALSE',
                      'citation_issued': 'TRUE',
                      'date': '2012-11-09',
                      'disposition': 'T - Citation Issued',
                      'district': '7',
                      'lat': '39.845107',
                      'lng': '-104.672505',
                      'location': '8100 PENA BLVD',
                      'outcome': 'citation',
                      'precinct': '759',
                      'raw_row_number': '671684',
                      'time': '20:58:01',
                      'type': 'vehicular',
                      'warning_issued': 'FALSE'},
                     {'arrest_made': 'FALSE',
                      'citation_issued': 'FALSE',
                      'date': '2012-11-15',
                      'disposition': 'In Service',
                      'district': '7',
                      'lat': '39.845143',
                      'lng': '-104.675409',
                      'location': '8700 PENA BLVD',
                      'outcome': 'NA',
                      'precinct': '759',
                      'raw_row_number': '671689',
                      'time': '13:45:02',
                      'type': 'pedestrian',
                      'warning_issued': 'FALSE'}],
             'None': [{'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-15',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.618575',
                       'lng': '-105.082643',
                       'location': '7700-BLK W GRANT RANCH BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '729',
                       'time': '21:50:38',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-06',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.618915',
                       'lng': '-105.086203',
                       'location': '8000 W CRESTLINE AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '887',
                       'time': '22:25:33',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.618915',
                       'lng': '-105.086203',
                       'location': '8000 W CRESTLINE AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '890',
                       'time': '00:15:36',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-21',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.618915',
                       'lng': '-105.086203',
                       'location': '8000 W CRESTLINE AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '897',
                       'time': '05:18:19',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-02',
                       'disposition': 'L - Clearance',
                       'district': 'None',
                       'lat': '39.618915',
                       'lng': '-105.086203',
                       'location': '8000 W CRESTLINE AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '898',
                       'time': '23:35:32',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-21',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.618915',
                       'lng': '-105.086203',
                       'location': '8000 W CRESTLINE AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '1021',
                       'time': '20:39:07',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-04',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.624196',
                       'lng': '-105.094461',
                       'location': 'W BELLEVIEW AVE / S DUDLEY ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '1725',
                       'time': '22:21:31',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-06',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.624198',
                       'lng': '-105.093286',
                       'location': '8555 W BELLEVIEW AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '1734',
                       'time': '23:49:22',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-12',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.624199',
                       'lng': '-105.091256',
                       'location': 'S WADSWORTH WAY / W BELLEVIEW AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '1793',
                       'time': '09:02:59',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-06',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.624199',
                       'lng': '-105.091256',
                       'location': 'S WADSWORTH WAY / W BELLEVIEW AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '1797',
                       'time': '08:49:42',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'File Only',
                       'district': 'None',
                       'lat': '39.635344',
                       'lng': '-105.030025',
                       'location': 'S Irving St / W Dill Rd',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '2366',
                       'time': '01:49:45',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-14',
                       'disposition': 'UTL / Unfounded / Unsuccessful',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '2474',
                       'time': '22:44:01',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '2477',
                       'time': '23:09:38',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-07',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '2479',
                       'time': '04:52:52',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-09',
                       'disposition': 'L - Clearance',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '2484',
                       'time': '21:52:20',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-12',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.643852',
                       'lng': '-104.920906',
                       'location': '4000 S Ivy Ln',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '2626',
                       'time': '12:44:11',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-08',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.63876',
                       'lng': '-105.081676',
                       'location': 'W QUINCY AVE / S Wadsworth Blvd',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '3113',
                       'time': '23:25:22',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-02',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.63876',
                       'lng': '-105.081676',
                       'location': 'W QUINCY AVE / S WADSWORTH BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '3117',
                       'time': '11:50:13',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-13',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.645872',
                       'lng': '-105.081574',
                       'location': 'S Wadsworth Blvd / Mansfield Pkwy',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '3966',
                       'time': '14:51:42',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-07',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '4329',
                       'time': '22:46:40',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-01',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '4336',
                       'time': '00:42:48',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-15',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '4344',
                       'time': '22:54:45',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-08',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '4351',
                       'time': '22:40:50',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-14',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '4357',
                       'time': '05:29:43',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-27',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.638746',
                       'lng': '-105.082258',
                       'location': '7700 W QUINCY AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '4365',
                       'time': '04:37:47',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-13',
                       'disposition': 'L - Clearance',
                       'district': 'None',
                       'lat': '39.653262',
                       'lng': '-105.071895',
                       'location': 'W Hampden Ave / S Pierce St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '5162',
                       'time': '00:44:19',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-21',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.638704',
                       'lng': '-105.088969',
                       'location': 'W QUINCY AVE / S BALSAM ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '5542',
                       'time': '22:56:29',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-16',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.653216',
                       'lng': '-105.077663',
                       'location': 'W Hampden Ave / S Upham St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '6335',
                       'time': '00:54:19',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-24',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.653259',
                       'lng': '-105.029822',
                       'location': 'S Irving St / W Hampden Ave',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '6554',
                       'time': '11:02:40',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-13',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.652009',
                       'lng': '-105.062583',
                       'location': '3550 S HARLAN ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '7029',
                       'time': '01:01:43',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-26',
                       'disposition': 'K - Street Check Completed,T -',
                       'district': 'None',
                       'lat': '39.653262',
                       'lng': '-105.071895',
                       'location': 'W Hampden Ave / S Pierce St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '7166',
                       'time': '20:38:15',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.653038',
                       'lng': '-104.935138',
                       'location': 'E HAMPDEN AVE / S CLERMONT ST',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '7863',
                       'time': '23:15:23',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-24',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.655289',
                       'lng': '-105.025092',
                       'location': 'S Federal Blvd / W Girard Ave',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '11204',
                       'time': '08:09:32',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-06',
                       'disposition': 'No Police Needed',
                       'district': 'None',
                       'lat': '39.660717',
                       'lng': '-105.109021',
                       'location': 'S Kipling St / W Dartmouth Pl',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '14372',
                       'time': '18:48:42',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-29',
                       'disposition': 'L - Clearance',
                       'district': 'None',
                       'lat': '39.665552',
                       'lng': '-105.081455',
                       'location': 'W AMHERST AVE / S WADSWORTH BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '17061',
                       'time': '05:05:41',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-06',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.665552',
                       'lng': '-105.081455',
                       'location': 'W AMHERST AVE / S WADSWORTH BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '17663',
                       'time': '21:40:44',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.665552',
                       'lng': '-105.081455',
                       'location': 'W AMHERST AVE / S WADSWORTH BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '17664',
                       'time': '09:57:53',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-27',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.665731',
                       'lng': '-105.081455',
                       'location': '2790 S WADSWORTH BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '17740',
                       'time': '21:42:41',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-20',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.665731',
                       'lng': '-105.081455',
                       'location': '2790 S WADSWORTH BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '17741',
                       'time': '21:59:41',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-30',
                       'disposition': 'Back Up / Cover Car',
                       'district': 'None',
                       'lat': '39.665911',
                       'lng': '-105.011024',
                       'location': 'S Tejon St / W Amherst Ave',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '17890',
                       'time': '15:09:17',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-02',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.667786',
                       'lng': '-105.053256',
                       'location': 'S SHERIDAN BLVD / W YALE AVE',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '19941',
                       'time': '00:06:05',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-14',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.667785',
                       'lng': '-105.057974',
                       'location': 'W YALE AVE / S DEPEW ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '20472',
                       'time': '05:15:18',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-08',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.667744',
                       'lng': '-105.081451',
                       'location': 'S WADSWORTH BLVD / W Yale Ave',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '21667',
                       'time': '22:42:04',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-08',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.667744',
                       'lng': '-105.081451',
                       'location': 'S WADSWORTH BLVD / W YALE AVE',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '21672',
                       'time': '01:31:50',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-17',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.667744',
                       'lng': '-105.081451',
                       'location': 'W YALE AVE / S WADSWORTH BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '21673',
                       'time': '07:19:05',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-08',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.668603',
                       'lng': '-104.903448',
                       'location': '2600-BLK S QUEBEC ST',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '23702',
                       'time': '21:17:15',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-19',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.667582',
                       'lng': '-104.920707',
                       'location': 'E YALE AVE / S HOLLY ST',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '24793',
                       'time': '23:12:24',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-03',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.672257',
                       'lng': '-105.053262',
                       'location': 'W LAKERIDGE RD / S SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '25606',
                       'time': '04:33:30',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.672257',
                       'lng': '-105.053262',
                       'location': 'W Lakeridge Rd / S SHERIDAN BLVD',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '25921',
                       'time': '03:37:57',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-20',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.671227',
                       'lng': '-104.903523',
                       'location': 'E Harvard Ave / S QUEBEC ST',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '26003',
                       'time': '22:55:52',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-16',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.673408',
                       'lng': '-105.015692',
                       'location': 'S ZUNI ST / W Wesley Ave',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '28466',
                       'time': '12:39:59',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-16',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.678462',
                       'lng': '-104.903456',
                       'location': 'E Warren Dr / S QUEBEC ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '46381',
                       'time': '05:41:48',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-14',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.678462',
                       'lng': '-104.903456',
                       'location': 'E Warren Dr / S QUEBEC ST',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '46386',
                       'time': '22:23:10',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-15',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.68956',
                       'lng': '-105.053266',
                       'location': '1500-BLK S SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '67748',
                       'time': '21:52:15',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-19',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.68956',
                       'lng': '-105.053266',
                       'location': 'W FLORIDA AVE / S SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '67750',
                       'time': '01:34:17',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-14',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.68956',
                       'lng': '-105.053266',
                       'location': 'W FLORIDA AVE / S SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '67752',
                       'time': '09:00:09',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-02',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.68956',
                       'lng': '-105.053266',
                       'location': 'S SHERIDAN BLVD / W FLORIDA AVE',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '67761',
                       'time': '06:10:36',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-19',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.68956',
                       'lng': '-105.053266',
                       'location': '1500 S SHERIDAN BLVD',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '67890',
                       'time': '21:31:23',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.696777',
                       'lng': '-105.055275',
                       'location': 'W Mississippi Ave / S Ames St',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '86653',
                       'time': '01:53:11',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-26',
                       'disposition': 'File Only',
                       'district': 'None',
                       'lat': '39.700331',
                       'lng': '-105.053244',
                       'location': '906 S SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '104756',
                       'time': '00:43:52',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-27',
                       'disposition': 'L - Clearance',
                       'district': 'None',
                       'lat': '39.700439',
                       'lng': '-105.053245',
                       'location': '900 S SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '106139',
                       'time': '01:03:21',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-14',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.700191',
                       'lng': '-104.940694',
                       'location': 'S COLORADO BLVD / E KENTUCKY AVE',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '110029',
                       'time': '20:27:55',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-02',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.702563',
                       'lng': '-105.053249',
                       'location': 'S SHERIDAN BLVD / W OHIO AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '118241',
                       'time': '00:52:31',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-13',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.703815',
                       'lng': '-104.940691',
                       'location': 'E EXPOSITION AVE / S COLORADO BLVD',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '122577',
                       'time': '00:38:16',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-12',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.704749',
                       'lng': '-104.94069',
                       'location': 'S COLORADO BLVD / E EXPOSITION AVE',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '123088',
                       'time': '20:36:44',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-04',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.707407',
                       'lng': '-104.933388',
                       'location': 'S CHERRY ST / E VIRGINIA AVE',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '131310',
                       'time': '23:40:13',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-10',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.718433',
                       'lng': '-105.053283',
                       'location': 'W 1st Ave / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '162210',
                       'time': '09:44:00',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-07',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.724084',
                       'lng': '-105.05326',
                       'location': 'W 5TH AVE / N SHERIDAN BLVD',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '179260',
                       'time': '09:32:40',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-07',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.724084',
                       'lng': '-105.05326',
                       'location': 'W 5TH AVE / N SHERIDAN BLVD',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '179262',
                       'time': '23:40:54',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-30',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.724084',
                       'lng': '-105.05326',
                       'location': 'W 5TH AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '179272',
                       'time': '11:15:14',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-06',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.736771',
                       'lng': '-105.053227',
                       'location': '5200-BLK W 13th Ave',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '242393',
                       'time': '23:28:53',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-04',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.738505',
                       'lng': '-105.054348',
                       'location': '5300 W 14th Ave',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '243337',
                       'time': '23:37:22',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-13',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.732996',
                       'lng': '-105.0785',
                       'location': '999 Upham Ct',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '259550',
                       'time': '17:09:18',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-12',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.740361',
                       'lng': '-105.053206',
                       'location': 'W COLFAX AVE / N SHERIDAN BLVD',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '312469',
                       'time': '21:14:17',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-21',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.740361',
                       'lng': '-105.053206',
                       'location': 'W COLFAX AVE / N SHERIDAN BLVD',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '312470',
                       'time': '10:07:49',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-29',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.740361',
                       'lng': '-105.053206',
                       'location': '1500 N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '312487',
                       'time': '23:53:59',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-16',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.740361',
                       'lng': '-105.053206',
                       'location': 'W COLFAX AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '312607',
                       'time': '19:36:32',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-17',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.740361',
                       'lng': '-105.053206',
                       'location': 'W COLFAX AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '312615',
                       'time': '19:14:46',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-16',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.740361',
                       'lng': '-105.053206',
                       'location': 'W COLFAX AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '312742',
                       'time': '21:11:37',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.740361',
                       'lng': '-105.053206',
                       'location': 'W COLFAX AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '312743',
                       'time': '18:34:54',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-29',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.740361',
                       'lng': '-105.053206',
                       'location': 'W COLFAX AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '312936',
                       'time': '17:28:19',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-17',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.746963',
                       'lng': '-105.214091',
                       'location': '22nd St / Washington Ave',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '362940',
                       'time': '11:13:32',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.753047',
                       'lng': '-105.053232',
                       'location': 'W BYRON PL / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '396485',
                       'time': '18:48:56',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-24',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.753835',
                       'lng': '-105.21503',
                       'location': '500 16th St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '418549',
                       'time': '21:26:15',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-12',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.760294',
                       'lng': '-105.053242',
                       'location': 'W 30TH AVE / N SHERIDAN BLVD',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '439437',
                       'time': '16:30:15',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-23',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.760294',
                       'lng': '-105.053242',
                       'location': 'W 30TH AVE / N SHERIDAN BLVD',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '439439',
                       'time': '16:17:34',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-03',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.758474',
                       'lng': '-105.05324',
                       'location': 'W 29TH AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '439570',
                       'time': '22:15:31',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-18',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.766624',
                       'lng': '-105.053242',
                       'location': 'W 36TH AVE / N SHERIDAN BLVD',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '477764',
                       'time': '17:08:21',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-20',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.769306',
                       'lng': '-105.055477',
                       'location': 'W 38TH Ave / Benton St',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '478184',
                       'time': '00:11:36',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.769308',
                       'lng': '-105.054391',
                       'location': 'W 38TH Ave / Ames St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '478194',
                       'time': '12:19:51',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-13',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.767514',
                       'lng': '-105.053242',
                       'location': '3700-BLK N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '496683',
                       'time': '11:09:22',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-12',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.69647',
                       'lng': '-104.873004',
                       'location': 'S ELMIRA ST / E MISSISSIPPI AVE',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '511299',
                       'time': '20:35:33',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-04',
                       'disposition': 'Back Up / Cover Car',
                       'district': 'None',
                       'lat': '39.648498',
                       'lng': '-104.757965',
                       'location': 'E Kent Dr / S Gibraltar St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '512264',
                       'time': '00:54:55',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-09',
                       'disposition': 'Vehicle Towed',
                       'district': 'None',
                       'lat': '39.694733',
                       'lng': '-104.819249',
                       'location': '1194 S Sable Blvd',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '513733',
                       'time': '16:32:42',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-30',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.69535',
                       'lng': '-104.885766',
                       'location': '1200-BLK S Xenia St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '513736',
                       'time': '13:52:56',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-15',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.71088',
                       'lng': '-104.867144',
                       'location': '10400 E ALAMEDA AVE',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '514471',
                       'time': '01:42:37',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-17',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.655772',
                       'lng': '-104.773088',
                       'location': 'S Zeno Ct / E Flora Dr',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '515154',
                       'time': '23:31:24',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-06',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.712803',
                       'lng': '-104.863721',
                       'location': '200 S Ironton St',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '519529',
                       'time': '08:14:12',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-20',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.659584',
                       'lng': '-104.850902',
                       'location': '3247 S PARKER RD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '521618',
                       'time': '15:31:21',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-06',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.7387',
                       'lng': '-104.884641',
                       'location': 'E 14TH AVE / N YOSEMITE ST',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '522922',
                       'time': '21:02:20',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-15',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.738699',
                       'lng': '-104.883477',
                       'location': '1400 Akron St',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '523111',
                       'time': '01:25:50',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-10',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.7387',
                       'lng': '-104.884641',
                       'location': 'E 14TH AVE / N YOSEMITE ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '523378',
                       'time': '16:44:11',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.7387',
                       'lng': '-104.884641',
                       'location': 'N YOSEMITE ST / E 14TH AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '523385',
                       'time': '22:46:52',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-19',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.737275',
                       'lng': '-104.88466',
                       'location': '1300 N YOSEMITE ST',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '528434',
                       'time': '23:54:09',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-07',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.737275',
                       'lng': '-104.88466',
                       'location': '1300 N YOSEMITE ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '528436',
                       'time': '02:01:10',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-01',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.73283',
                       'lng': '-104.882354',
                       'location': 'E 11th Ave / Alton St',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '528468',
                       'time': '20:59:28',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-04',
                       'disposition': 'Detox Van',
                       'district': 'None',
                       'lat': '39.735626',
                       'lng': '-104.88468',
                       'location': 'E 12TH AVE / N YOSEMITE ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '528816',
                       'time': '00:50:12',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-17',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.735626',
                       'lng': '-104.88468',
                       'location': '1200-BLK N YOSEMITE ST',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '528824',
                       'time': '16:36:32',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-29',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.735626',
                       'lng': '-104.88468',
                       'location': '1200-BLK N YOSEMITE ST',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '528959',
                       'time': '14:15:15',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-13',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.740094',
                       'lng': '-104.877555',
                       'location': 'E Colfax Ave / Clinton St',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '534216',
                       'time': '22:18:27',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-30',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.740098',
                       'lng': '-104.882258',
                       'location': 'E Colfax Ave / Alton St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '535738',
                       'time': '02:43:09',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-15',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.7401',
                       'lng': '-104.8811',
                       'location': '9200-BLK E Colfax Ave',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '537762',
                       'time': '00:48:00',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-26',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.740211',
                       'lng': '-104.87756',
                       'location': 'Clinton St / E Colfax Ave',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '542668',
                       'time': '10:19:36',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-13',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.741991',
                       'lng': '-104.878747',
                       'location': 'E 16th Ave / Chester St',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '543896',
                       'time': '22:07:12',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-11',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.740108',
                       'lng': '-104.879931',
                       'location': 'E Colfax Ave / Boston St',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '545795',
                       'time': '13:28:18',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.740157',
                       'lng': '-104.884647',
                       'location': 'E COLFAX AVE / N YOSEMITE ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '546549',
                       'time': '09:18:09',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-21',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.740157',
                       'lng': '-104.884647',
                       'location': 'E Colfax Ave / N YOSEMITE ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '546632',
                       'time': '23:50:33',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-13',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.740157',
                       'lng': '-104.884647',
                       'location': '1500 N YOSEMITE ST',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '546642',
                       'time': '00:34:45',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-29',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.740157',
                       'lng': '-104.884647',
                       'location': 'E Colfax Ave / N YOSEMITE ST',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '546662',
                       'time': '02:45:40',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-12',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.740157',
                       'lng': '-104.884647',
                       'location': 'N YOSEMITE ST / E COLFAX AVE',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '546893',
                       'time': '22:20:54',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-29',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.740224',
                       'lng': '-104.883461',
                       'location': 'E Colfax Ave / Akron St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '546929',
                       'time': '23:25:18',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-03',
                       'disposition': 'UTL / Unfounded / Unsuccessful',
                       'district': 'None',
                       'lat': '39.740221',
                       'lng': '-104.882268',
                       'location': 'E Colfax Ave / Alton St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '547379',
                       'time': '02:09:23',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-24',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.740221',
                       'lng': '-104.882268',
                       'location': 'E Colfax Ave / Alton St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '547382',
                       'time': '01:09:57',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-26',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.740221',
                       'lng': '-104.882268',
                       'location': 'E Colfax Ave / Alton St',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '548419',
                       'time': '23:21:34',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-27',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.743808',
                       'lng': '-104.884652',
                       'location': 'E 17TH AVE / N YOSEMITE ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '548541',
                       'time': '23:25:57',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-25',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.743808',
                       'lng': '-104.884652',
                       'location': '1700 N YOSEMITE ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '548551',
                       'time': '00:52:52',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-23',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.743806',
                       'lng': '-104.883448',
                       'location': 'E 17th Ave / Akron St',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '548637',
                       'time': '15:02:56',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-08',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.743806',
                       'lng': '-104.883448',
                       'location': 'E 17th Ave / Akron St',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '548926',
                       'time': '23:18:53',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-06',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.740221',
                       'lng': '-104.882268',
                       'location': 'E Colfax Ave / Alton St',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '552182',
                       'time': '23:23:51',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-21',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.769129',
                       'lng': '-104.764578',
                       'location': '19300 E 38TH AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '552471',
                       'time': '09:07:55',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-16',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.767079',
                       'lng': '-104.846924',
                       'location': 'Smith Rd / Peoria St',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '552545',
                       'time': '14:58:40',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-21',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.769217',
                       'lng': '-104.760777',
                       'location': 'E 38TH AVE / N ENSENADA ST',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '555652',
                       'time': '11:28:25',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-13',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.763876',
                       'lng': '-104.846886',
                       'location': 'E 33rd Ave / Peoria St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '556994',
                       'time': '00:59:04',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.762535',
                       'lng': '-104.846874',
                       'location': '3200-BLK Peoria St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '559689',
                       'time': '11:26:43',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-16',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.769175',
                       'lng': '-104.809766',
                       'location': '3800 Chambers Rd',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '561635',
                       'time': '12:49:01',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.753703',
                       'lng': '-104.861069',
                       'location': 'E 26th Pl / Joliet St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '563293',
                       'time': '00:03:31',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-21',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.753703',
                       'lng': '-104.861069',
                       'location': 'E 26th Pl / Joliet St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '563297',
                       'time': '03:51:33',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-12',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.776584',
                       'lng': '-105.053245',
                       'location': 'W 44TH AVE / N SHERIDAN BLVD',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '570617',
                       'time': '14:02:22',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-30',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.776584',
                       'lng': '-105.053245',
                       'location': 'W 44TH AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '570643',
                       'time': '22:23:21',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-20',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.778385',
                       'lng': '-105.053243',
                       'location': 'W 45TH AVE / N SHERIDAN BLVD',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '576192',
                       'time': '20:40:43',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-03',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.778385',
                       'lng': '-105.053243',
                       'location': 'W 45TH AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '576321',
                       'time': '22:19:51',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-10',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.795884',
                       'lng': '-105.025323',
                       'location': '3000-BLK W 55th Ave',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '594124',
                       'time': '23:29:18',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-19',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.791064',
                       'lng': '-105.053246',
                       'location': 'W 52ND AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '594508',
                       'time': '14:20:48',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-07',
                       'disposition': 'Back Up / Cover Car',
                       'district': 'None',
                       'lat': '39.78382',
                       'lng': '-104.911939',
                       'location': '6600 E 47TH AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '595348',
                       'time': '00:21:48',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-07',
                       'disposition': 'Back Up / Cover Car',
                       'district': 'None',
                       'lat': '39.783821',
                       'lng': '-104.908941',
                       'location': '6800 E 48TH AVE',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '595361',
                       'time': '00:41:50',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-16',
                       'disposition': 'File Only',
                       'district': 'None',
                       'lat': '39.793545',
                       'lng': '-105.019728',
                       'location': '3500 Rosemary Ln',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '595729',
                       'time': '15:43:57',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.791064',
                       'lng': '-105.053246',
                       'location': 'W 52ND AVE / N SHERIDAN BLVD',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '595796',
                       'time': '09:01:30',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-29',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.791073',
                       'lng': '-105.015833',
                       'location': 'W 52ND AVE / N ZUNI ST',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '596062',
                       'time': '13:23:18',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-17',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.791073',
                       'lng': '-105.015833',
                       'location': 'W 52ND AVE / N ZUNI ST',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '596066',
                       'time': '19:10:31',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-17',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.801884',
                       'lng': '-104.980369',
                       'location': '520 E 58th Ave',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '596315',
                       'time': '18:44:20',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-30',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.791079',
                       'lng': '-105.018156',
                       'location': 'W 52ND AVE / N BEACH CT',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '596637',
                       'time': '17:42:26',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-12',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.794725',
                       'lng': '-105.025145',
                       'location': 'W 54th Ave / N Federal Blvd',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '597533',
                       'time': '15:38:09',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-23',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.794725',
                       'lng': '-105.025145',
                       'location': 'W 54th Ave / N Federal Blvd',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '598768',
                       'time': '15:28:18',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'TRUE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-20',
                       'disposition': 'Arrest Made',
                       'district': 'None',
                       'lat': '39.791079',
                       'lng': '-105.018156',
                       'location': 'W 52ND AVE / N BEACH CT',
                       'outcome': 'arrest',
                       'precinct': 'None',
                       'raw_row_number': '600227',
                       'time': '22:27:36',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.791064',
                       'lng': '-105.053246',
                       'location': 'W 52ND AVE / N SHERIDAN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '614009',
                       'time': '09:09:54',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'Party Advised',
                       'district': 'None',
                       'lat': '39.791104',
                       'lng': '-105.043941',
                       'location': 'W 52ND AVE / N TENNYSON ST',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '614160',
                       'time': '08:09:50',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-12',
                       'disposition': 'Y - Broadcast',
                       'district': 'None',
                       'lat': '39.801913',
                       'lng': '-104.977977',
                       'location': 'E 58th Ave / Washington St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '614627',
                       'time': '22:41:03',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-23',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.910555',
                       'lng': '-104.972094',
                       'location': '11817 Keough Dr',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '616888',
                       'time': '13:44:48',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-27',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.935697',
                       'lng': '-104.940257',
                       'location': 'E 133rd Ave / Colorado Blvd',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '617076',
                       'time': '14:21:08',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'Z - Test',
                       'district': 'None',
                       'lat': '39.937185',
                       'lng': '-104.958868',
                       'location': 'E 134th Ave / York St',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '617085',
                       'time': '09:23:50',
                       'type': 'pedestrian',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-30',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.798285',
                       'lng': '-104.815969',
                       'location': 'E 56TH AVE / N ELKHART ST',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '663449',
                       'time': '22:15:51',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-28',
                       'disposition': 'Warning Issued',
                       'district': 'None',
                       'lat': '39.798309',
                       'lng': '-104.812551',
                       'location': 'E 56TH AVE / N FAIRPLAY ST',
                       'outcome': 'warning',
                       'precinct': 'None',
                       'raw_row_number': '664043',
                       'time': '09:57:32',
                       'type': 'vehicular',
                       'warning_issued': 'TRUE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-01',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.79832',
                       'lng': '-104.809632',
                       'location': 'E 56TH AVE / N CHAMBERS RD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '665016',
                       'time': '19:56:08',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-05',
                       'disposition': 'In Service',
                       'district': 'None',
                       'lat': '39.798218',
                       'lng': '-104.827187',
                       'location': 'E 56TH AVE / N POTOMAC WAY',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '665168',
                       'time': '00:58:11',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'FALSE',
                       'date': '2012-11-10',
                       'disposition': 'K - Street Check Completed',
                       'district': 'None',
                       'lat': '39.798262',
                       'lng': '-104.820038',
                       'location': 'E 56TH AVE / N CROWN BLVD',
                       'outcome': 'NA',
                       'precinct': 'None',
                       'raw_row_number': '670011',
                       'time': '00:46:56',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'},
                      {'arrest_made': 'FALSE',
                       'citation_issued': 'TRUE',
                       'date': '2012-11-08',
                       'disposition': 'T - Citation Issued',
                       'district': 'None',
                       'lat': '39.84392',
                       'lng': '-104.771974',
                       'location': 'E 81st Ave / Tower Rd',
                       'outcome': 'citation',
                       'precinct': 'None',
                       'raw_row_number': '671674',
                       'time': '04:54:23',
                       'type': 'vehicular',
                       'warning_issued': 'FALSE'}]})
In [26]:
for i in byprecinct['423']:
    print(i['warning_issued'])
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
TRUE
FALSE
FALSE
TRUE
FALSE
TRUE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
TRUE
TRUE
TRUE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
TRUE
FALSE
FALSE
FALSE
TRUE
FALSE
FALSE
TRUE
FALSE
FALSE
FALSE
In [29]:
just_warnings = []
for i in byprecinct['423']:
    if (i['warning_issued'] == 'TRUE'):
        just_warnings.append(i)
In [38]:
warning_all = []
for i in all_data:
    if (i['warning_issued'] == 'TRUE'):
        warning_all.append(i)
In [43]:
for i in warning_all:
    print(i['precinct'])
423
423
423
324
423
423
423
423
423
423
423
423
423
423
423
324
423
423
423
None
423
323
None
323
323
314
323
323
423
423
323
323
423
422
423
323
423
314
323
423
423
423
323
423
422
None
421
421
421
314
None
421
323
323
323
421
None
421
313
421
421
421
422
314
422
314
422
314
314
421
421
422
313
313
421
313
313
422
422
313
314
314
314
314
314
314
322
314
314
322
421
322
322
322
422
322
422
422
422
313
421
421
421
421
421
314
322
421
421
322
322
421
421
421
421
421
312
422
312
421
312
312
322
421
None
421
421
313
421
312
312
322
312
312
312
312
421
421
421
312
322
421
422
312
312
421
421
421
322
None
312
322
412
412
412
412
412
412
312
412
322
412
322
412
412
312
412
312
412
312
412
412
412
None
412
412
412
312
412
412
412
412
412
322
322
412
312
311
312
411
312
411
411
412
312
411
322
412
312
411
411
311
412
411
311
411
411
411
411
411
411
321
321
321
411
311
311
321
321
311
411
311
311
411
311
411
311
411
311
411
311
411
411
311
311
311
311
311
311
311
311
311
311
411
321
311
311
None
411
311
411
311
311
311
311
311
311
311
311
311
411
411
411
321
622
213
321
123
123
321
411
222
123
311
311
311
311
123
123
123
213
123
311
321
411
311
411
311
411
411
411
311
213
623
222
123
123
123
123
122
622
122
122
611
122
122
122
222
213
123
123
213
623
213
123
123
122
222
122
123
122
623
623
623
611
222
122
123
122
223
122
122
122
611
213
622
122
122
122
122
122
123
123
611
222
623
222
213
122
623
122
623
623
623
222
611
213
223
122
122
122
122
122
213
121
622
121
121
621
123
611
621
621
121
121
121
121
121
121
121
121
222
121
223
223
621
222
222
621
222
121
222
223
223
121
222
123
222
222
213
222
213
222
121
213
123
621
213
121
622
213
213
223
223
222
222
222
611
223
223
621
223
223
611
121
121
611
213
213
222
611
222
621
621
223
611
621
621
622
611
121
621
611
611
211
222
621
621
611
121
222
621
213
121
211
612
121
121
121
612
222
611
611
612
621
612
612
113
221
221
612
121
612
113
211
113
113
211
113
211
113
113
221
113
113
221
212
221
221
113
113
113
113
221
212
211
113
211
212
113
113
211
113
211
211
221
213
113
221
211
221
113
113
211
211
211
221
221
221
221
212
113
113
113
211
221
None
None
212
612
211
112
113
113
211
211
221
512
113
211
113
512
111
112
111
112
111
221
111
111
111
212
212
212
212
512
221
221
111
212
111
None
323
323
212
321
321
321
321
None
321
323
323
323
321
321
321
None
321
212
221
324
323
223
223
None
223
223
223
223
223
223
323
223
223
223
223
223
None
223
223
223
223
223
None
223
223
223
223
223
223
223
223
223
None
223
223
223
223
512
512
512
512
223
223
None
512
512
511
111
512
512
512
111
512
512
111
111
111
511
112
511
212
212
212
112
112
111
212
212
221
221
221
212
111
111
111
112
111
111
111
111
111
111
111
111
None
None
None
111
111
221
111
111
511
212
221
111
111
112
111
111
511
521
523
511
521
511
511
522
521
521
522
522
523
521
511
523
521
511
521
521
511
521
511
511
522
521
521
521
521
511
521
521
511
521
521
522
521
522
521
None
523
522
523
522
521
522
522
511
523
521
In [49]:
precincts = {}

for i in warning_all:
    if i['precinct'] not in precincts:
        precincts[i['precinct']] = 1
    else:
        precincts[i['precinct']] +=1
In [51]:
len(warning_all)
Out[51]:
732
In [50]:
precincts
Out[50]:
{'423': 27,
 '324': 3,
 'None': 23,
 '323': 20,
 '314': 16,
 '422': 14,
 '421': 37,
 '313': 8,
 '322': 19,
 '312': 24,
 '412': 27,
 '311': 42,
 '411': 33,
 '321': 19,
 '622': 6,
 '213': 20,
 '123': 22,
 '222': 26,
 '623': 10,
 '122': 26,
 '611': 17,
 '223': 46,
 '121': 25,
 '621': 16,
 '211': 19,
 '612': 8,
 '113': 27,
 '221': 25,
 '212': 19,
 '112': 8,
 '512': 14,
 '111': 33,
 '511': 16,
 '521': 21,
 '523': 6,
 '522': 10}
In [68]:
prob_warning = []
prob = 0;
for count in precincts:
    prob = (precincts[count]/732)*100
    prob_warning.append(prob)
    
In [69]:
prob_warning
Out[69]:
[3.6885245901639343,
 0.4098360655737705,
 3.1420765027322406,
 2.73224043715847,
 2.185792349726776,
 1.912568306010929,
 5.05464480874317,
 1.092896174863388,
 2.5956284153005464,
 3.278688524590164,
 3.6885245901639343,
 5.737704918032787,
 4.508196721311475,
 2.5956284153005464,
 0.819672131147541,
 2.73224043715847,
 3.0054644808743167,
 3.551912568306011,
 1.366120218579235,
 3.551912568306011,
 2.3224043715846996,
 6.284153005464481,
 3.415300546448088,
 2.185792349726776,
 2.5956284153005464,
 1.092896174863388,
 3.6885245901639343,
 3.415300546448088,
 2.5956284153005464,
 1.092896174863388,
 1.912568306010929,
 4.508196721311475,
 2.185792349726776,
 2.8688524590163933,
 0.819672131147541,
 1.366120218579235]
In [70]:
import json

with open('my_data.json','w') as outfile:
    json.dump(prob_warning,outfile)
In [ ]: